Free Pegasystems PEGACPSSA23V1 Exam Actual Questions

The questions for PEGACPSSA23V1 were last updated On Jun 14, 2025

At ValidExamDumps, we consistently monitor updates to the Pegasystems PEGACPSSA23V1 exam questions by Pegasystems. Whenever our team identifies changes in the exam questions,exam objectives, exam focus areas or in exam requirements, We immediately update our exam questions for both PDF and online practice exams. This commitment ensures our customers always have access to the most current and accurate questions. By preparing with these actual questions, our customers can successfully pass the Pegasystems Certified Pega Senior System Architect '23 Exam exam on their first attempt without needing additional materials or study guides.

Other certification materials providers often include outdated or removed questions by Pegasystems in their Pegasystems PEGACPSSA23V1 exam. These outdated questions lead to customers failing their Pegasystems Certified Pega Senior System Architect '23 Exam exam. In contrast, we ensure our questions bank includes only precise and up-to-date questions, guaranteeing their presence in your actual exam. Our main priority is your success in the Pegasystems PEGACPSSA23V1 exam, not profiting from selling obsolete exam questions in PDF or Online Practice Test.

 

Question No. 1

A hospital uses a case type to manage the treatment of patients visiting the Emergency Room (ER). Cases are created when the patient checks in at the registration desk, and are resolved when the patient is released from the hospital. Stakeholders identify the following security requirements for the case type.

Patients access cases on a read-only basis.

Patients can only access their own cases.

Doctors and nurses can modify cases throughout the case life cycle.

Only doctors are allowed to write prescriptions.

What two steps, when performed together, allow you to ensure that patients can read, but not edit, cases? (Choose Two)

Show Answer Hide Answer
Correct Answer: B, D

To ensure that patients can read but not edit cases in the hospital's ER case management system, two steps need to be taken. First, configure an Access Role to Object rule with the open case action set to 1 (B), which grants read-only access. This ensures that patients can view their cases without the ability to make any modifications. Secondly, create an access group unique to patients (D). This access group would include the Access Role to Object rule configured in the previous step. By associating patients with this access group, it ensures that they are granted the appropriate level of access to their cases, fulfilling the security requirements specified by the stakeholders. Reference: Pega Community documentation on Access of Role to Object and access groups.


Question No. 2

A budgeting application uses a job scheduler to automatically email customers once a week with a breakdown of their weekly expenses. Due to the international usage of the application, stakeholders require peak performance at all hours.

Which solution addresses this performance concern?

Show Answer Hide Answer
Correct Answer: C

Dedicating and classifying a node for the job scheduler allows the job scheduler to run on a node that is optimized for batch processing. This ensures that resource-intensive jobs do not impact the performance of the user nodes, thus maintaining peak performance at all hours. Reference: Pega Platform Help - Job Schedulers.


Question No. 3

The ruleset list for an application consists of the following rulesets, ordered from highest to lowest:

A rule with an Apply to: class of TGB-HR-SelfService-Work-TimeOff references a rule named ConfirmationRequest. The four instances of ConfirmationRequest in the rules cache are shown in the following table.

Which is chosen during rule resolution?

Show Answer Hide Answer
Correct Answer: A

Rule resolution in Pega follows the 'Rule Resolution' algorithm, which will look for the rule that best matches the class hierarchy and the ruleset list. In this scenario, the rule that matches the Apply to: class of TGB-HR-SelfService-Work-TimeOff and is in the highest listed ruleset that is available (SelfService) will be selected. Reference: Pega SSA course materials on rule resolution.


Question No. 4

You should consider using a field value when the list of allowed values is

Show Answer Hide Answer
Correct Answer: A

You should consider using a field value when the list of allowed values is mostly static. Field values are best used for properties with values that do not change often and need to be reused throughout the application. Reference: Pega official documentation on field values.


Question No. 5

You are updating a system of record using a SOAP connector. If the system of record is unavailable, you want to retry after an hour. If it is still unavailable after an hour, a notification should be sent to a system administrator.

How do you implement this requirement?

Show Answer Hide Answer
Correct Answer: B

To handle the unavailability of a system of record when using a SOAP connector, the most effective approach is to implement the retry logic in the connector's error handler flow. This flow can be configured to wait for a specified duration (in this case, an hour) before retrying the connection. If the system remains unavailable after the retry, the flow can then proceed to send a notification to the system administrator. This approach encapsulates the error handling logic within the connector's flow, making it reusable and maintainable. Reference: Pega Community documentation on connector error handling and SOAP connectors.