Activity-End method?
Use the Activity-End method to cause the system to End the current activity and all calling activities.
Home » Archives for 05/21/20
Activity-End method?
Use the Activity-End method to cause the system to End the current activity and all calling activities.
Pega Rule Circumstance
A circumstance is an optional qualification available for all rules. Using a circumstance allows our application to support multiple variants of a rule. For example, variations of an ordinary rule instance can be created for different customer status levels or for different geographic locations.
Rule Availability:
How to change Rule
Availability?
To
change the availability setting of a rule, click the Availability toolbar
button ().
We
may need to check out the rule first. A dialog box appears.
Select
one of five Availability values
Yes, No,/Draft Mode, Blocked, Final, Withdrawn.
Creates a new work object (without any cover work object) and performs a Commit method, which saves the work object and releases all locks.
Use Work-.and work rather than Work-. Add in situations where the Commit method is not wanted until later.
Creates a new cover work object but does not perform a Commit method, so current locks are retained.
Use Work-.AddCovered rather than Work-.AddCoveredWork to commit the new work object.
Called by harness processing to create a (non-covered) work object and display the work object form.
Called by harness processing to create a covered work object and display the work object form.
more on activities Activity Full understanding
Pega Decision rules:
Decision
Rules categorized into:
When condition rule
Decision tree rule
Decision table rule
Map value rule
Explain about WHEN condition rule?
Declarative:
The declarative rule is an instance of a class derived from
Rule-Declared-
They allow for automatic processing of Property values.
No need to be called explicitly.
No need to run sequentially.
The system manages re-evaluation when it detects a change.
What is a clipboard and how
it is organized?
Each connected Process Commander Requestor has an associated temporary memory area on the server known as the clipboard. The clipboard has a hierarchical structure, consisting of nodes known as pages, most of which have a name and an associated class. Pages act as buffers or temporary copies of object instances (of that class) that are copied from, or may later be stored in, the PegaRULES database or another database.
Difference between Work-
and Data- classes?
The Work-
base class, one of thirteen standard top-level abstract classes, is a
superclass to all the classes that define work objects. A work object is a
fundamental unit that records processed work in an application.
The Data- the base class is an abstract class above various classes that define and contain static data and cumulative data. For example, the Data-Admin- classes contain information created by your Process Commander developers defining who can use the application, their privileges and security, and where they belong in the organization.
What is the difference between Workgroup and Access Group?
A work the group is an instance of the Data-Admin-WorkGroup class. A working group can identify a user who is a supervisor, together with a set of workers and workbaskets that report to that supervisor.
Explain about
Work Object?
A work object is the primary unit of work completion in an application, and the primary collection of data that a flow operates.
How can we achieve INNER JOIN, LEFT OUTER JOIN, and RIGHT OUTER JOIN from report definitions?
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
Where assignments will be stored in Pega
rules database?
Work List related assignments are stored
in pc_assign_worklist.
Workbasket related assignments are
stored in pc_assign_workbasket.
Where work objects will be stored?
Split Join - One or more flows with Any, All options
Split For Each - One flow for each page in page list/ page group with Any, All, Iterate options
Class - Object
‘Object’ is an instance of ‘Class’, Pega we define ‘Work Object’ as an instance of a concrete class derived from ‘Work-’ base.
Now we have to learn about the ‘Class’ concept in Pega
What is BPM?