Which two methods allow you to identify the Pega Platform application type? (Choose Two)
Answer : B, C
The application type can often be identified by viewing the Application layers widget for the ruleset stack, which gives an overview of how the application is structured, and by viewing the Application definition rule, which provides detailed information about the application's setup and its components. Reference: Pega Platform Help - Application Layers.
You want to allow users to use an application on a mobile device, even if the device is not connected to a network.
Which configuration option supports this requirement?
Answer : D
To support offline use of applications on mobile devices, you should source UI elements such as drop-down lists using data pages, which can be configured to be available offline. This allows the application to use locally cached data to populate the UI elements even when the device is not connected to a network. Reference: Pega Mobile Developer Guide on offline capabilities.
Which two design configurations limit the need for horizontal scrolling when an application is used on a mobile device? (Choose two.)
Answer : B, D
To prevent horizontal scrolling on mobile devices, setting the importance of columns allows for the most critical information to be shown first, potentially hiding less important columns on smaller screens. Using percentage widths for layouts ensures that the layout adapts to the screen width, which can also help prevent horizontal scrolling. Reference: Pega UI design best practices for mobile devices.
Which two statements describe the role of the cache manifest in a mobile app? (Choose two.)
Answer : A, B
The cache manifest in a mobile app facilitates the use of the app while offline by allowing the download of rules and static resources. This ensures that users can access the app's functionality and interface elements even when they do not have an internet connection. Reference: Pega Mobile Client Developer Guide.
A company with multiple applications spanning different business units wants to send a standard confirmation email to customers whenever a case is created.
Which is the appropriate layer of the Enterprise Class Structure (ECS) for the email correspondence?
Answer : B
In Pega's Enterprise Class Structure (ECS), standard functionalities that are shared across multiple applications within an organization, such as sending a confirmation email, should be placed at the Organization layer. This allows for reusability and standardization across various implementations within the organization. Reference: Pega best practices for class design and ECS.
You want to create a new minor version of an application ruleset to add a new feature to your application. The new feature will be made available to users in a phased rollout.
How do you update the application to add the new ruleset version?
Answer : C
To add a new minor version of an application ruleset for a phased rollout, you would lock the current version of the ruleset to prevent further changes (this is referred to as 'rolling' the ruleset), and then create a new minor version. The application record should be updated to reference this new minor version of the ruleset. This ensures that the new features can be tested and gradually released to the user base without the need to create a completely new application version. Reference: Pega Senior System Architect documentation on versioning and release practices.
You are asked to create a custom status named Open-Review. This status is to be applied to assignments in one application.
How do you satisfy the request?
Answer : A
To create a custom status named Open-Review to be applied to assignments in one application, create a Field Value record named Open-Review for .pyStatusWork with the Apply To class set to the class group (A). This approach allows you to customize the status values used in your application and ensure that they are available for use in assignments within the specified class group, which typically corresponds to an application. Reference: Pega Community documentation on Field Value records and status values.