What types of validations are there?
a. Client Side Validations
If you want to validate properties before submitting the forms, those validations we can call client-side validations.
b. Server Side Validations
If we want to validate properties after submitting the forms, those validations we can call a server-side validation.
Home » All posts
Difference between Rule-Edit-Input and Rule-Edit-Validate?
Edit input rules are instances of the Rule-Edit-Input class. They are part of the Property category.
An Edit Input rule provides a conversion facility.
Edit validate rules are instances of the Rule-Edit-Validate class. They are part of theProperty category.
Use the Edit Validate form to define a Java routine that tests the validity of an input value in an activity.
Edit input rules are instances of the Rule-Edit-Input class. They are part of the Property category.
An Edit Input rule provides a conversion facility.
Edit validate rules are instances of the Rule-Edit-Validate class. They are part of theProperty category.
Use the Edit Validate form to define a Java routine that tests the validity of an input value in an activity.
We have different JOIN types in the Pega report definition.
INNER JOIN, LEFT OUTER JOIN, and RIGHT OUTER JOIN.
From Data Access tab of Report Definition in Class joins a section
Only Include Matching Rows = INNER JOIN
Include All Rows in this class = LEFT OUTER JOIN
Include All Rows in Joined Class = RIGHT OUTER JOIN
INNER JOIN, LEFT OUTER JOIN, and RIGHT OUTER JOIN.
From Data Access tab of Report Definition in Class joins a section
Only Include Matching Rows = INNER JOIN
Include All Rows in this class = LEFT OUTER JOIN
Include All Rows in Joined Class = RIGHT OUTER JOIN
Explain about Delegating a rule?
A delegated rule is one that appears for a specific group of users so that they may manage these rules outside the development environment. Delegated rules appear on the My Rules gadget for a single user or for all the users who are associated with a specific access group.
An application user who has the PegaRULES: WorkMgr4 access role can update the leftmost tab of existing rules that may change frequently.
A delegated rule is one that appears for a specific group of users so that they may manage these rules outside the development environment. Delegated rules appear on the My Rules gadget for a single user or for all the users who are associated with a specific access group.
An application user who has the PegaRULES: WorkMgr4 access role can update the leftmost tab of existing rules that may change frequently.
What is the difference between parameters and local variables? How are they used in an activity?
Values stored in parameter values can be shared between two activities but the scope of local variables is confined to the activity in which they are declared.
Parameters can be referenced as Param. parameter name.
Local variables are referenced as Local. variable name. more on Activities
Values stored in parameter values can be shared between two activities but the scope of local variables is confined to the activity in which they are declared.
Parameters can be referenced as Param. parameter name.
Local variables are referenced as Local. variable name. more on Activities
The Class is an instance of rule ‘Rule-Obj-Class’.
The class can be created as ‘Abstract Class’, ’Concrete Class’, or ‘Class Group’.
Class Group is a concrete class while creating it is mentioned as ‘is a Class Group. The basic purpose of creating a Class Group is to group the classes; we are making a set of classes that share a common key structure. All instances of these classes to be stored in a single database table.
What is REST?
Nowadays we are using REST integration
interface to interact with external systems through web service in Pega,
basically to make calls between machines.
REST stands for Representational State Transfer Protocol.
What is REST in Pega?
Pega is proving a service (response)
to the external system by processing the request received from an external system.
Basically, we will receive a
request from external system/machine to Pega, Pega will process that request
and provides a response back to an external system.
| Add caption |
The request will be in different types
XML/JSON. Let’s consider the request type is JSON.
