https://www.dumpscafe.com
https://www.dumpscafe.com/Braindumps-PEGACPLSA88V1.html
Certified Pega Lead
System Architect
(CPLSA) Exam 8.8
Version: Demo
[ Total Questions: 10]
Web: www.dumpscafe.com
Email: support@dumpscafe.com
Pegasystems
PEGACPLSA88V1
IMPORTANT NOTICE
Feedback
We have developed quality product and state-of-art service to ensure our customers interest. If you have any
suggestions, please feel free to contact us at feedback@dumpscafe.com
Support
If you have any questions about our product, please provide the following items:
exam code
screenshot of the question
login id/email
please contact us at
and our technical experts will provide support within 24 hours.
support@dumpscafe.com
Copyright
The product of each order has its own encryption code, so you should use it independently. Any unauthorized
changes will inflict legal punishment. We reserve the right of final explanation for this statement.
Pegasystems - PEGACPLSA88V1
Pass Exam
1 of 8
Verified Solution - 100% Result
A.
B.
C.
D.
A.
B.
Question #:1
A shipping case needs to wait for a designated time period before progressing In its flow. The developer
considers using either a Wait shape or an assignment with a service-level agreement (SLA) to perform this
function.
Identify the use case where an assignment with an SLA is the preferred approach.
There is a requirement to present a custom UI form to the user before the designated time.
There is a requirement to perform an action before the designated time.
There is a requirement to adjust the case urgency when the creation of the assignment occurs.
There is a requirement to manually step past the waiting point before the designated time.
Answer: C
Explanation
When deciding between using a Wait shape or an assignment with an SLA in a Pega case flow:
Assignment with SLA (C):
An assignment with an SLA is preferred when there is a requirement to adjust the case urgency at
the time of assignment creation. SLAs allow you to specify goals, deadlines, and escalation
actions that can modify the urgency of the case.
This approach is suitable when you need to ensure that the case is handled within a certain
timeframe and that the urgency can dynamically change based on business rules.
References:
Pega Case Management Best Practices
Pega SLA Configuration Guide
Question #:2
XYZ Corporation wants to ensure that every attempt by a developer to check a rule into a certain ruleset
version is reviewed before that rule is allowed to be checked in. The rule should be automatically sent back to
the developer without being checked in if all warnings are not justified and the fields on the history tab are not
complete.
How do you address this requirement?
Prior to the first assignment in the ApproveRuleCheckin flow, add a decision shape where one output
connector is equivalent to the submitting the SendBack flow action.
Pegasystems - PEGACPLSA88V1
Pass Exam
2 of 8
Verified Solution - 100% Result
B.
C.
D.
A.
B.
C.
Implement a CheckForCustomWarnings activity for each rule included in the requirement. The activity
issues a warning whenever the requirement's history tab criteria are not met.
Override the FindReviewers decision tree to invoke a when rule that evaluates the criteria, if the when
rule returns true, the decision tree returns SendBack.
Override the SendBack Flow Action adding a pre-ctivity that transfers the assignment to the create
operator if the rule's criteria are not met.
Answer: C
Explanation
To ensure that every attempt by a developer to check a rule into a certain ruleset version is reviewed before
that rule is allowed to be checked in:
C. Override the FindReviewers decision tree to invoke a when rule that evaluates the criteria, if the
when rule returns true, the decision tree returns SendBack.
By overriding the FindReviewers decision tree and incorporating a when rule, you can enforce criteria
such as complete history tab fields and justified warnings. If the criteria are not met, the decision tree
returns SendBack, preventing the rule from being checked in.
References:
Pega Documentation on Rule Check-In: Rule Check-In
Pega Documentation on Decision Trees: Decision Trees
Question #:3
your application connects to two REST services that list details about bank offices.
One REST service uses a postal code as a GET parameter and returns a detailed list of bank officers in that
postal code.
the other REST service uses a city name as a GET parameter and returns a datailed list of back offices in
cities with that name. The application uses data pages to cache details about bank offices.
which approach do you use to populate a data page with a list of bank offices in a postal code from the REST
service?
configure a REST connector data source. configure the REST connector to reference the postal code
from the work object using the request data transform.
configure a REST connector data source. Set the Endpoint on the data source to reference the postal
code parameter value at the end of the URL
configure a REST connector data source and pass the parameter page to the connector. configure the
Pegasystems - PEGACPLSA88V1
Pass Exam
3 of 8
Verified Solution - 100% Result
C.
D.
REST connector to reference the same parameter in the query string for the get method
configure a REST connector data source and pass the postal code parameter to the request data
transform configure the REST connector to use the postal code the query string for the get method
Answer: B
Explanation
To populate a data page with a list of bank offices in a postal code from the REST service:
Configure a REST connector data source.
Set the Endpoint on the data source to include the postal code parameter value at the end of the URL,
ensuring that the correct data is retrieved based on the provided postal code.
Question #:4
XYZ Inc.'s COE wants case life cycle developers to use a field group named "Claim" regardless of the
application being developed.
Select and move the three tasks that the COE performs for this requirement to the Task List column and place
them in the correct order. (Choose Three)
Answer:
Pegasystems - PEGACPLSA88V1
Pass Exam
4 of 8
Verified Solution - 100% Result
A.
B.
C.
D.
Question #:5
An external application calls a Pega REST service, which takes a significant amount of time to respond. Pega
Platform returns a unique identifier instantly and runs the service without the application waiting.
Which configuration implements this functionality?
A REST service that runs Queue-For-Agent method, and then returns a unique ID.
A REST service that runs asynchronously by using a service request processor.
A REST service that runs a connector in parallel to call a Pega server.
A REST service that runs a spin-off flow to run the service asynchronously.
Answer: B
Explanation
:
Service Request Processor for Asynchronous Processing
Configuring a REST service to run asynchronously using a service request processor ensures that the
service runs without making the external application wait. The system returns a unique identifier
instantly and processes the request in the background.
:
References
Pega's best practices for REST services and asynchronous processing recommend using service request
processors for handling long-running processes.
Pegasystems - PEGACPLSA88V1
Pass Exam
5 of 8
Verified Solution - 100% Result
A.
B.
C.
D.
Therefore, the correct answer is:
B. A REST service that runs asynchronously by using a service request processor.
Question #:6
In the Answer Area, drag each use case on the left to the appropriate locking strategy on the right.
Answer:
Question #:7
In a telecom customer service application, birthday wishes must be sent to customers every day at midnight by
email, according to KYC records. The business requirement states that if email delivery failures occur, the
system must record the failures.
There is an infrastructure limitation in using an external stream node; other available nodes are Webuser,
Background processing, and BIX only. What two options can comprise an alternative approach as an interim
solution? (Choose Two)
Configure a data set with partitioning keys and filter keys. Configure this data set as an input to data
flow which outputs the data to a utility that sends email to customers. Record failed emails in a data
type.
Run a job scheduler, and pull the customers that match the current date. For each record, invoke the
SendEmailNotification utility. If any exception is received in email delivery, mark the failure in a data
type.
Run a job scheduler, and pull the customers that match the current date. For each record, invoke a
Flow-New method from a utility to call a flow that uses the Send email smart shape to send notifications
to customer. Mark the failure in a data type.
Run a job scheduler, and pull the customers that match the current date. For each record, invoke the
CorrNew utility. If any exception is received in email delivery, mark the failure in a data type.
Answer: B D
Explanation
:
Job Scheduler with SendEmailNotification Utility
Running a job scheduler to pull customer records matching the current date and using the
SendEmailNotification utility ensures that emails are sent out at midnight. Recording failures in a data
type captures the necessary error information.
:
Job Scheduler with CorrNew Utility
Using the CorrNew utility to send emails and record any exceptions in a data type also satisfies the
requirement for recording email delivery failures.
Pegasystems - PEGACPLSA88V1
Pass Exam
6 of 8
Verified Solution - 100% Result
A.
B.
C.
D.
:
References
Pega documentation on job schedulers and email utilities provides guidelines for implementing
scheduled tasks and handling email delivery.
Therefore, the correct answers are:
B. Run a job scheduler, and pull the customers that match the current date. For each record, invoke the
SendEmailNotification utility. If any exception is received in email delivery, mark the failure in a data
type.
D. Run a job scheduler, and pull the customers that match the current date. For each record, invoke the
CorrNew utility. If any exception is received in email delivery, mark the failure in a data type.
Question #:8
A case displays recent customer transaction. Different operators often view the recent transactions
for the same customer repeatedly throughout the day. the operation to fetch the transactions is
resource-intensive, and the source data is updated once an hour. select two options to configure a data page to
cache the customer transactions and minimize the operator's wait time. (choose two)
configure the data page scope to node.
configure the refresh strategy to reload of older than 1 hour
configure the data page scope to thread.
configure the refresh strategy to reload once per interaction.
Answer: A B
Explanation
To configure a data page that caches customer transactions and minimizes operator wait time, you should:
Set the data page scope to node to ensure that the cached data is shared among all requestors on the
same node, reducing the number of times the data needs to be fetched.
Configure the refresh strategy to reload if the data is older than 1 hour, aligning with the data update
frequency and ensuring that the data is not stale.
Question #:9
A case is used to process home loans for approval.
in the answer area, area, select the enterprice class structure (ECS) layer in which to bulid each of the
following components. each layer of the ECS contains two components.
Pegasystems - PEGACPLSA88V1
Pass Exam
7 of 8
Verified Solution - 100% Result
Answer:
Explanation
Text, letter Description automatically generated
Question #:10
You are working on an insurance claims application that receives claims through email. The company receives
500 emails per hour. the insurance company promises a 24-hour response time to receives and verify the clain.
After the claim is verified. The system automatically responds with email containing the claim ID.
Pegasystems - PEGACPLSA88V1
Pass Exam
8 of 8
Verified Solution - 100% Result
A.
B.
C.
D.
The application is developed in the Pega cloud environment. The production environment is currently running
on premises.
What is your recommendation to ensure that insurance company can meet the 24-hour response time
requirement for claims submitted by email?
Recommend the insurance company change its policy to allow for a broader processing window.
Recommend the insurance company use an advanced agent to verify claims and respond.
Recommend the insurance company use an email lister with concurrent threats.
Recommend the insurance company use an MDB listener instead of an email listener.
Answer: C
Explanation
To ensure that the insurance company can meet the 24-hour response time requirement for claims submitted
by email, the best recommendation is to use an email listener with concurrent threads. This configuration
allows the system to process multiple emails simultaneously, thereby handling the high volume of 500 emails
per hour efficiently. References:
Pega Documentation on Email Listener: Email Listener
https://www.dumpscafe.com
https://www.dumpscafe.com/allproducts.html
https://www.dumpscafe.com/Microsoft-exams.html
https://www.dumpscafe.com/Cisco-exams.html
https://www.dumpscafe.com/Citrix-exams.html
https://www.dumpscafe.com/CompTIA-exams.html
https://www.dumpscafe.com/EMC-exams.html
https://www.dumpscafe.com/ISC-exams.html
https://www.dumpscafe.com/Checkpoint-exams.html
https://www.dumpscafe.com/Juniper-exams.html
https://www.dumpscafe.com/Apple-exams.html
https://www.dumpscafe.com/Oracle-exams.html
https://www.dumpscafe.com/Symantec-exams.html
https://www.dumpscafe.com/VMware-exams.html
About dumpscafe.com
dumpscafe.com was founded in 2007. We provide latest & high quality IT / Business Certification Training Exam
Questions, Study Guides, Practice Tests.
We help you pass any IT / Business Certification Exams with 100% Pass Guaranteed or Full Refund. Especially
Cisco, CompTIA, Citrix, EMC, HP, Oracle, VMware, Juniper, Check Point, LPI, Nortel, EXIN and so on.
View list of all certification exams: All vendors
We prepare state-of-the art practice tests for certification exams. You can reach us at any of the email addresses listed
below.
Sales: sales@dumpscafe.com
Feedback: feedback@dumpscafe.com
Support: support@dumpscafe.com
Any problems about IT certification or our products, You can write us back and we will get back to you within 24
hours.