Pegasystems PEGACPLSA88V1 Certified Pega Lead System Architect (CPLSA) Exam 8.8 Online Training
Pegasystems PEGACPLSA88V1 Online Training
The questions for PEGACPLSA88V1 were last updated at Jul 19,2025.
- Exam Code: PEGACPLSA88V1
- Exam Name: Certified Pega Lead System Architect (CPLSA) Exam 8.8
- Certification Provider: Pegasystems
- Latest update: Jul 19,2025
A Pega application locally stores the same set of codes defined by and used within an external system of record. The Page application does not locally store the labels associated to these codes. During case processing, the displayed labels for this set of codes are sourced from the external system of record. On any given day, the label associated to a code may change. You are asked to implement a report definition that displays the current label associated to each code whenever the report is run.
How do you design a Pega application to meet this requirement?
- A . Develop a SQL function that calls a stored procedure to retrieve the currently associated level for each code.
- B . Persist the most recently retrieved labels for each code in a local table. Join to that table when running the report.
- C . Query the distinct codes that the report would display. Develop an interface to retrieve the associated labels In bulk.
- D . Display report definition rows using a custom section. Use a Keyed-access Data Page to source label values.
Table a contains customer information. Table B contains complaints submitted by customers. Table C contains positive feedback submitted by customer.
You are tasked to write a report that list all rows in Table A where, per customer, the number of rows in Table B related to Table A are greater than the number of rows in Table C related to table A.
Which method creates the report that executes with the best performance?
- A . Define two subreports: one that counts rows in Table B relative to Table A, and on that counts the rows in table C relative to Table A. Only include rows in the main. Report against table A where the table B count is greater that the Table C count.
- B . Join table A to Table B and C using include all rows in this class. Count the Join column from both Table B and Table C. Only include rows where the first count is greater than the second.
- C . Join table A to Table B and C using include all rows in join class. Count the Join column from both Table B and Table C. Only include rows where the first count is greater than the second.
- D . Define two subreports, one where table B users ”Do not Join”, and one where Table C users ”Do not Join”, In the main report count the rows from each subpreport, then only include rows where the count from the Table B subreport than the count from the Table C subreport.
What advantage does a rule-utility-function have over a rule-obj-activity?
- A . Ability to be circumstanced
- B . Ability to be saved multiple rulesets
- C . Ability to be directly called from a decision table
- D . Ability to be used to enforce security
Finco corporation uses pega to perform the majority of the mortgage underwriting tasks.
After gathering the initial data, the mortgage case pauses and waits for the credit report.
The credit report is a separate case, located in the same class group as the mortgage case, and typically resolves within 24 hours. After the credit report is complete, the application routes the mortgage case to the specialist.
Which of the following options is the optimal solution to route the mortgage case to the specialist when the credit report is complete?
- A . Add a wait shape to the mortgage flow with a case dependency to advance the mortgage flow to the next assignment when the credit report case is resolved.
- B . Insert a credit report assignment in the mortgage flow with a SLA to check the status of the credit report case and call the ResumeFlow activity when the credit report case completes.
- C . Include a split join shape in the mortgage flow to include the credit report flow. Use the All option on the split join shape to ensure the credit report is complete before routing to the specialist.
- D . Modify the credit report flow to move the mortgage case to the specialist. The application routes the assignment to the specialist with the least amount of work.
A pega application has cases that represent customer accounts each with many members. When a member of a customer account registers with the application through an offline component, a related registration transaction is recorded. An advanced agent updates the customer account cases with new members. The application is running in a multimode system and advanced agents are enabled on all nodes.
Which two elements are valid design choices? (choose two)
- A . Use the optimistic locking option on the case types.
- B . Create a Registration subcase configured to run in offline mode.
- C . Leverage the default object lock contention requeuing capability.
- D . Override DetermineLockString to use .AccountID instead of .pyID as the lock string.
In the answer area, select the configuration for back-to=back processing on the follow action form so that getnextwork processing does not occur.
- A . Look for the assignment to perform.
- B . If not found, look for other assignment in flows on this case
- C . If not found, look for assignment in flows on the parent case
- D . For each also consider assignments in workbaskets
You imported a rule-admin-product (RAP) file that contains new features into a user acceptance testing (UAT) environment. Select the option that ensures basic functionality behaves as expected before inviting users to start acceptance testing.
- A . Create a smoke test suite. Run the test suite using the pre-import process.
- B . Create an ad hoc test suite. Run the test suite using the post-import process.
- C . Create an integration test suite. Run the test suite using the Execute Test REST service
- D . Create a regression test suite. Run the test suite using the automation server.
when a customer submits a credit card dispute, the application connects to an external service to retrieve all transactions made by the customer. the external service returns transactions ordered by date of transaction, in a descending, chronological order. when a case worker reviews the dispute, the application displays the 10 most recent transactions.
if the case worker does not see the disputed transaction in the list, the case worker can search for additional transactions. the case. the case worker can filter search results on transaction date, the transaction amount or the merchant name the search results display the 10 most recent transactions that satisfy the filter criteria. the case worker cannot paginate through the results.
How do you configure the data page to satisfy all the requirements in the scenario?
- A . create a node-level data page that uses a connector as its source.
- B . create a thread-level data page with parameters that uses a connector as it source.
- C . create a thread-level data page that uses a report definition as its source.
- D . create a node-level data page with parameters that uses a report definition as its source
when a customer submits a credit card dispute, the application connects to an external service to retrieve all transaction made by the customer. the external service returns transactions ordered by date of transaction, in a descending, chronological order when a case worker reviews the dispute the application displays the 10 most recent transactions.
if the case worker does not see the disputed transaction in the list, the case worker can search for additional transaction the caseworker can filter search results on transaction date the transaction amount or the merchant name the search results display the 10 most recent transactions that satisfy the filter criteria. the case worker cannot paginate through the results.
How do you configure the response data transform to satisfy all of the requirements in the scenario?
- A . configure the data transform to copy only the first 10 matching records to a page list property
- B . configure the data transform to copy all of the records to a page list property
- C . configure the data transform to copy all of the records to the data page
- D . configure the data transform to use the first x pagination setting to copy only the first 10 results to the data page
you want to expose a set of services for your application. Each service should be exposed as a separate WSDL.
How do you accomplish this?
- A . create a separate service package for each WSDL.
- B . create a service listener for each WSDL.
- C . Run the service wizard for each WSDL.
- D . place the service rules in separate classes, one class per WSDL