To qualify for an instant loan, an applicant must earn a monthly income of at least GBP2000 and cannot exceed GBP20000 in credit card debt.
How do you enforce these restrictions when requesting an instant loan?
Similar to the previous validation question, using a single Validate rule that encompasses both conditions---minimum monthly income of GBP 2000 and a maximum credit card debt of GBP 20000---is the most straightforward and efficient approach. This ensures that all financial criteria are assessed together, maintaining consistency and simplicity in the validation process, and preventing the application from moving forward if either financial criterion is not met.
In which scenario is it appropriate to use a layout group?
The appropriate scenario to use a layout group:
D . A view displays address, contact, and payment information in a series of tabs. A layout group is suitable for organizing related information into separate tabs, making the interface cleaner and more navigable. This allows users to easily access different sets of information without overcrowding the view.
Which two items must be provided by the user to add an external data source to a data object? (Choose Two)]
Adding an external data source to a data object in Pega requires specific details to ensure proper integration and functionality:
A . The authenticating information, if required by the corresponding service. Secure access to external data services often requires authentication details, such as API keys or login credentials, to ensure that interactions are authorized.
D . The uniform resource identifier that identifies the web service. The URI is crucial as it specifies the exact location and endpoint of the web service from which data is to be fetched, acting as a link between the Pega application and the external data source.
In an Online retail application, the Order Receipt view displays a list of the product ordering, including the product image, unit cost, and quantity. The total cost of the order is displayed at the bottom of the view.
Which two configurations on the Receipt view must be together to display the required information as described? (Choose two.)
In an online retail application, to display a list of ordered products along with images, unit cost, and quantity, and also display the total cost of the order at the bottom of the view, the configuration must include:
A repeating dynamic layout to list each product, which can be embedded with other dynamic layouts for displaying each product's details including image and cost.
The total cost should be displayed outside the repeating dynamic layout to ensure that it is presented as a summary of the entire order, rather than repeating with each product entry. This configuration ensures that the user interface is organized and logically separates itemized costs from the total cost.
You are creating a case type to process job applications for a large corporation. Jobapplications for security positions require a physical assessment in addition to the standard criminal background check. The physical assessment can occur before or after the background check. How do you configure a case type to achieve the required behavior?
For a job application case type requiring both a physical assessment and a criminal background check, where the sequence of these checks can vary:
B . Create a process for the physical assessment that is parallel to the background check process. Configuring these processes to run in parallel allows both assessments to occur independently and in any order, as required by the case. This setup effectively manages variability in process sequencing without imposing a fixed order, thereby accommodating the specified flexibility in the application process.