In a construction application, the user access group is configured with an Access of Role to Object record as shown in the following image:
Currently, the application is in the quality assurance environment. Which three operations can users perform in the application at this level? (Choose three.)
Answer : A, B, D
A developer discovers that a calculated property value is returning an unexpected result.
Which two features of the Tracer tool can you use to diagnose the problem while minimizing the impact on application performance? (Choose two.)
Answer : B, C
When diagnosing an issue with a calculated property value using the Tracer tool:
B . Breakpoints. This feature allows you to pause the execution at certain points, enabling you to inspect the processing of the rules and properties, which is helpful in identifying where and why a property is not calculating as expected.
C . The Watch function. By watching specific properties, you can monitor changes to their values in real time as the process executes, which helps in determining the point at which the unexpected result occurs, all with minimal overhead on application performance.
You should consider using a field value when the list of allowed values is ______________.
Answer : B
You would typically use a field value in Pega when the list of allowed values is:
B . Mostly static. Field values are best used for lists of allowed values that do not change frequently. They enable the use of predefined, constant values across the application, providing consistent data references for fields that have a set list of options.
A manufacturing company has an Inventory data page that uses page structure. You need to write a single page of data to a single database row in the configured system of record.
Which option fulfills the requirement?
Answer : D
To write a single page of data to a single database row in the configured system of record:
D . Database save. A database save operation is used to persist data from a Pega data page into a database. It matches the structure of the data page to the corresponding database table structure and writes the data to a new row, fulfilling the requirement to synchronize a page of data to the database.
You create an application to track package deliveries. Choose three elements that are essential for this application. (Choose Three)
Answer : B, C, D
Essential elements for an application designed to track package deliveries:
B . A shipment tracking case type. This is the core component that would manage the lifecycle of a package delivery, from dispatch to delivery, within the application.
C . A set of fields to capture the shipping details. Accurate capture and storage of shipping details such as sender, recipient, package type, and delivery address are fundamental for processing and tracking the shipment.
D . A work party to represent the customer. Work parties in Pega are used to represent stakeholders associated with a case, in this instance, the customer receiving the delivery. This helps in managing customer-related information and interactions effectively within the case.
You are designing a form for an online bookstore to show new arrivals. Which layout do you use to display the book cover pictures, as shown in the image?
Answer : C
For displaying book cover pictures in a grid or list format on an online bookstore form:
C . Repeating dynamic layout. This layout type is ideal for displaying collections of items such as book covers, as it can dynamically repeat content based on the data source. It allows for an organized, responsive, and visually appealing presentation of new arrivals, each represented by their respective cover image.
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.