Which piece of application content do you localize by using a Field Value rule?
Correct Answer: A
Field Value rules in Pega are used primarily for localizing user interface elements: A: Labels and drop-down values on a section rule. Localizing these elements ensures that applications can adapt to different languages and regional settings, enhancing user accessibility and usability across diverse geographical locations.
PEGACPSA23V1 Exam Question 47
Employees submit time-off requests that must be approved by their manager. If the requested time off is extended beyond three weeks, the manager, director, and a member of human resources (HR) must approve the request. Which two configurations, when applied in combination, achieve this behavior? (Choose Two)
Correct Answer: B,C
For time-off requests requiring multiple levels of approval based on the duration of the request, combining a cascading approval process with an authority matrix and custom approvals configured in the reporting structure is effective. The authority matrix can define different approval rules based on the length of the time-off requested, while custom approvals allow for the inclusion of additional approvers, such as HR, when the request exceeds a specific threshold (e.g., three weeks). This ensures that all necessary approvals are obtained in a structured and hierarchical manner.
PEGACPSA23V1 Exam Question 48
A form listing nearby restaurants has four columns: Restaurant name Restaurant location Thumbnail image of the seating area Make reservation (check box) You want to ensure that users have the information they need to make a reservation regardless of screen size. When viewed on a small screen, you do not need to display the images. What three configuration steps do you take to support this requirement? (Choose Three)
Correct Answer: A,D,E
In order to adapt a form listing nearby restaurants for varying screen sizes while ensuring that users have the necessary information to make a reservation, the configuration of column importance plays a crucial role in responsive design. The importance level determines which columns are displayed or hidden depending on the available screen size, ensuring an optimal user experience across devices. * A. Set the importance of the image column to Secondary: This step ensures that the thumbnail images of the seating area are deemed less critical for smaller screens. By setting their importance to Secondary, these images will not be displayed on small screens, where space is limited, prioritizing more critical information. * D. Set the importance of the Restaurant name and Make reservation columns to Primary: The restaurant name and the option to make a reservation are essential pieces of information for users. Setting these columns to Primary ensures that they remain visible across all screen sizes, including small screens, allowing users to identify restaurants and make reservations without needing to see the images. * E. Set the importance of the Restaurant location and Make reservation columns to Secondary contains a slight mistake in its formulation since it mentions the Make reservation column which should * remain Primary according to the correct answer D. The correct approach should be to set the Restaurant location column's importance to Secondary, allowing it to be hidden on smaller screens if necessary. However, since the primary action is making a reservation, the Restaurant name and Make reservation columns must have the highest visibility priority. Thus, the Restaurant location's importance is somewhat less critical but still valuable when screen space allows. In responsive design within Pega applications, setting column importance helps tailor the display of information to the device's screen size, enhancing usability. By correctly configuring the importance of each column, developers can ensure that users have access to essential information and functionalities, such as making a reservation, regardless of how they access the form.
PEGACPSA23V1 Exam Question 49
Which requirement is satisfied by configuring a service level agreement?
Correct Answer: B
PEGACPSA23V1 Exam Question 50
A door manufacturer offers a finite list of colors on all its doors. As part of the order, customers can select the color of the door. Select the data page definition configuration settings to source a color drop-down list to minimize memory usage. Object Type ACME-Products-Data-Color or ACME-Products-Work-Color or ACME-Products-Work-ColorFeedback Edit Mode Readonly Or Editable Or Savable Scope Thread Or Requestor Or Node
Correct Answer: F
In Pega, when configuring data pages to source UI controls such as drop-down lists, it's crucial to select the configuration that optimally uses memory and efficiently serves the data to the users. For this scenario, the correct answer is Option F: List, ACME-Products-Data-Color, ReadOnly, Node. * List vs. Page: Choosing 'List' is appropriate because the requirement is to populate a drop-down list with multiple entries (colors in this case). 'Page' would be used for single record data, which is not the case here. * Object Type: 'ACME-Products-Data-Color' is chosen because the data represents a list of color options provided by the manufacturer, which is typically static reference data, fitting the 'Data' class layer rather than the 'Work' layer which is used for case management or the 'Work-ColorFeedback' which would be used for storing feedback or interactions specific to colors. * Edit Mode: 'ReadOnly' is the correct mode since users are selecting a color from a pre-defined list and are not expected to edit these values directly. * Scope: 'Node' is selected to minimize memory usage. By setting the scope to 'Node', the data page is loaded once per node (server instance) and shared across all requestors (users) on that node, which is memory efficient for data that doesn't change often and is applicable across all users, such as a list of colors. This configuration ensures that the data page is loaded efficiently in a read-only list format at the node level, reducing the overall memory footprint while making the color selections available across the application.