Test Answers (Pega)
Test Answers (Pega)
Ans: The Call instruction calls the another specified activity and execute it. When that activity
completes, control returns to the calling activity.
We use the Branch instruction to find another specified activity and branch to it without a return. When
the system executes a Branch step, control transfers to another activity found through rule resolution.
Execution of the original activity pauses. When the branched activity ends, processing of the current
activity also ends.
Ans: Obj-Browse: Fetch Multiple Records for list of Properties. Use the Obj-Browse method to search
instances of one class and copy the entire instances, or specified properties, to the clipboard as an
array of embedded pages.
Obj-Open : Fetch single record based on Class key. method to open an instance stored in the
PegaRULES database or in an external database linked to an external class, and save it as a clipboard
page.
5. What is difference between Thread, Requestor & Node types in data page rule
Ans : Thread – The page is created in a single requestor thread and can be accessed as often as
needed by processing in that thread.
Requestor – The requestor can access the page(s) loaded across all threads.
Node – Any requestor executing on the current node can access the pages.
Node Level- If you specify a page in node level, then it can be accessed by all the requestors in the
particular node.
Requestor Level- If you specify a page in Requestor level , then it can be accessed by all the threads
opened by the requestor.
Thread Level- If you specify a page in Thread level, then it can be accessed only by that particular
thread.
Ans: Single Page: It will hold Multiple Properties but we can assign one value at a time.
Page List: It will hold Multiple Properties but we can assign Multiple values at a time, List Index
will be Integer.
Page Group: It will hold Multiple Properties but we can assign Multiple values at a time, Group
Index will be Alphabetic/Alpha Numeric.
Ans: Connector Flowaction: Process Rule which allows us to perform actions on the assignmen moves
the WorkObject from current assignment to Next Assignment.
Local Action: It is also a Process Rule which allows to Perform action on the Assignment, but still
WorkObject will be there on the same assignment.
For Assignment we can add Multiple Connector Flowactions & Multiple Local Actions.
Assignment tables
Rules tables
History tables
Index tables
Link tables
Log tables
System tables
Miscellaneous tables
15. Diff types of Pages in Clipboard?
User pages.
Linked property pages.
Ans.
@Base.
Work-
Date-
Int-
Assign-
Index-
Rule-
Code
Ans. The Pega Platform layer contains the built-in assets necessary for processing cases and
other work in Pega applications. This layer also contains the assets Pega Platform uses.
19. Types of Properties?
Ans. Every property has one of eleven modes. The three categories of modes are Values,
Pages, and Java Objects
Ans: px Identifies properties that are special, meaning that the values cannot be input by
user input on an HTML form.
py Properties with names that start with py are not special, meaning that values can be
input by users on an HTML form.
pz Properties with names that start with pz support internal system processing. Users
cannot directly manipulate pz properties. Your application may examine these values, but
do not set them. The meaning of values may change with new product releases.
Ans. By using Flow Action we can map user interface design flow.When ever we are using UI
in flow, we need to create a flow action for that section.In work flow UI can be added only
through Flow action rule.
Ans. Obj-Browse can also not filter on properties which are not optimized. But if you select
a property that is not optimized, it will read the entire BLOB. Report Definition does not
read the entire BLOB but uses UDFs to return scalar properties back if youreference
unoptimized properties.
25. Diff sources we can use in data page? Give any 3 names.
Data transforms
Activity
Report definition
26. Is it possible to configure data class in work class? ( Yes/No)
Ans: ((NO))
Work Class - Contains the rules that describe how to process a case, such as processed, date
element and user interfaces. Data Class - Contains the rules that describe the data objects
used in application .
Ans. Any Pega rules we create and execute can be done only under a class.
If class is not available then we cannot create Pega rules and we cannot compile the
rules.
1. Review the list of case statuses, and ensure that a case status that meets your business
needs does not already exist.
2. Create a field value that defines your custom status by doing the following:
As a best practice, use one of the following prefixes to support standard reports and
maintain continuity in between your custom status and standard status
values: New-, Open-, Pending-, or Resolved-.
Map properties (and their values) on one page to another, existing page.
On a specific clipboard page, define one or more initial properties on that page and
set their values. A data
transform can set many property values on a page in one processing step.
Ans. We use this method to copy the contents of a source clipboard page to a new or
previously created destination clipboard page.The Page copy method does not alter the
source page.