Which three use cases demonstrate the Pega dynamic Ul behavior? (Choose Three)
Answer : A, C, E, E
Dynamic UI behavior in Pega is exemplified by interactions that adjust in real-time to user input or conditions:
A . Display a message upon form submission that a date field must be in the future. This is a validation feature that dynamically checks the validity of date inputs against the condition set (future date) at the time of form submission.
C . Automatically calculate order total when users change quantities. Dynamic UI behavior includes recalculating values in real-time as users adjust input parameters, like quantity in this case, enhancing the interactive experience.
In an application that sells office supplies, the Payment view displays order items and collects payment information. In the Payment section rule, the order items are grouped in a dynamic layout. You find out later that the Order Summary view must also display the order items.
How do you configure the Ul so that the order items display is shared between the Payment view and Order Summary view?
Answer : A
To achieve reuse and consistency between the Payment view and the Order Summary view in an application that sells office supplies, converting the layout that groups the order items into a reusable section is an effective solution. This reusable section can then be embedded in both the Payment and Order Summary views. This approach ensures that any updates to the order items are automatically reflected in both views, maintaining a single source of truth and reducing maintenance overhead.
The business process for an automobile insurance claim consists of the following phases: -Submission: The customer contacts a customer service representative (CSR) to file the claim. -Review: An adjuster reviews the claim, assesses the damages to each vehicle, and provides an estimate of the cost of repairs. - Repair: A third party performs the repairs on each vehicle, communicating with the adjuster and customer as necessary. - Verification: After each vehicle repair, the adjuster closes the claim. According to Pega best practices, which phase can you implement as a child case?
Answer : D
According to Pega best practices, the 'Repair' phase in an automobile insurance claim process is well-suited to be implemented as a child case. This is because the repair phase often involves multiple parties, complex interactions, and could be managed as a separate but linked process to the main claim. Implementing it as a child case allows for focused management of each repair job, clear separation of concerns, and streamlined communication between the adjuster, repair shop, and the customer.
Users must provide values to certain fields before submitting a job application form. Which configuration adds asterisks to indicate the mandatory fields on the form?
Answer : B
To indicate mandatory fields on a form with asterisks, the correct approach is:
B . Configure the mandatory fields as Always Required on the form at runtime. This setting directly influences how fields are displayed on UI forms, including the automatic addition of asterisks to visually indicate that these fields must be filled out before submission. This approach does not involve validation rules, which are for data integrity checks post-entry, but rather it ensures user awareness of required inputs from the onset.
Which two statements demonstrate the role of a report? (Choose Two)
Answer : A, D
Reports in Pega serve multiple functions related to data handling and display:
A . Reports are used to assess process performance. Reports provide critical insights into various aspects of business processes, enabling organizations to monitor, evaluate, and optimize their operations.
D . Reports are used to source a list of selectable items while working in an assignment. In addition to performance monitoring, reports can dynamically generate lists of items that users can select from during their tasks, facilitating data-driven decision-making and actions within assignments.
When applying for a credit limit increase, customers with standard credit cards must provide information in an Employment Information process. Requests from customers with Platinum credit cards automatically skip this process.
What task do you perform to implement this requirement?
Answer : C
To implement a requirement where different processes are applied based on customer card types:
C . Add a custom condition to start the process by testing the card type. This solution involves setting a condition at the beginning of the Employment Information process that checks the type of credit card (standard or platinum). If the condition identifies a platinum card, the process is skipped, aligning the process flow with the specific requirements of different cardholders.
You are defining a user view for a loan application. If the loan applicant indicates there is an existing open account, the Date account opened must be before the current date. Select the approach that meets the validation requirements.
Answer : B
To ensure the validation that the 'Date account opened' is indeed in the past for a loan application:
B . Use a validate rule to verify the Date account opened is in the past. Validate rules in Pega are used to enforce data integrity and accuracy, making them suitable for verifying that a date entered is before the current date. This method ensures that data meets the business requirement directly and effectively.