Offline support requires which two configurations? (Choose two.)
For offline support, it's necessary to have the access groups configured to allow offline access to users so that the correct rules and data can be synchronized to the user's device. In addition, the case types must be configured to function properly in an offline environment, ensuring that users can create, update, and submit cases without a network connection. Reference: Pega Mobile Client Developer Guide.
Identify two options for passing data between a Pega application and a webpage containing a web mashup. (Choose Two)
A: Calling the function pega.web.api.doAction() allows for specific actions to be performed in the Pega application from the web mashup, such as refreshing a section or submitting an assignment.
D: Using the attribute data-pega-event-onpagedata allows for passing data from the web mashup to the Pega application when specific events occur on the page. Reference: Pega official documentation on Pega Web Mashup methods and attributes.
Select the three Pega best practices for developing activities. (Choose Three)
Pega best practices recommend keeping activities short to enhance maintainability and readability. Custom Java steps should be limited to reduce complexity and potential errors. Activities should also be limited in general, with preference given to other rule types that are more declarative and less procedural, like data transforms, to improve application performance and maintainability. Reference: Pega SSA course materials on activity best practices.
In which log can you see performance-related alerts that are triggered when an operation exceeds the specified performance threshold7
Performance-related alerts are recorded in the ALERT log. This log contains entries for operations that exceed specified performance thresholds, providing insights into potential performance issues. Reference: Pega Platform Help - System Logs.
A fitness organization wants to ensure that data is entered correctly into an online form when users apply for, or update, their membership information.
Which scenario requires an edit validate rule?
An edit validate rule is used to ensure that data is entered in a specific format. For membership numbers that need to match a particular pattern (M-######-0#), an edit validate rule would be the appropriate mechanism to enforce this format upon entry. Reference: Pega Platform Help - Edit Validate.