XYZ Corp requires employees to designate alternate operators to perform their work while they are on vacation. Work vacationing operators should be visible to alternate operators. How do you configure the application to handle this requirement?
- Add a ValueList Property to Data Admin-Operator-ID. Alternate operators add vacationing persons to their ValueList. Modify the Assign Worklist report definition to include this ValueList. Modify security accordingly to allow access.
- Modify the user portal to only display team members for which the operator has been designated an alternate. Clicking on an operator displays that operator's worklist. Assignments are opened accordingly.
- Define a custom Access When rule named pxAssignedToMeOr Alternate. Modify the pyUserWorkList Report Definition using this rule to display every Assign-Worklist assignment within the WorkGroup.
- Develop an agent that transfers worklist assignments from the operator going on vacation, when that vacation starts, to the alternate operator.
When vacation ends, transfer uncompleted assignments back.
Answer(s): C
Explanation:
To configure the application to handle the requirement where employees can designate alternate operators to perform their work while they are on vacation, follow these steps:
Define a custom Access When rule:
Create an Access When rule named pxAssignedToMeOrAlternate. This rule will allow the system to check whether the assignment is for the current user or their designated alternate. The rule should include logic to determine if the assignment belongs to the operator or the operator's alternate.
Modify the pyUserWorkList Report Definition:
Access the pyUserWorkList report definition which is used to display the worklist for the current user.
Modify this report to include a filter condition using the pxAssignedToMeOrAlternate Access When rule. This ensures that the report displays assignments for both the current user and any assignments for which they are an alternate.
Assign Worklist assignments to alternate operators:
Ensure that the assignments visibility is adjusted accordingly by modifying the security settings to allow access to assignments for alternate operators.
Testing and Verification:
Test the configuration to ensure that alternate operators can see and access the worklist items of the operators they are covering for.
This approach leverages Pega's Access When rules to dynamically adjust the visibility of assignments based on operator relationships, ensuring that alternate operators can perform work as needed without requiring manual assignment transfers.
Reference:
Pega Documentation on Access When rules: Access When Rules Pega Documentation on Report Definitions: Report Definitions
Reveal Solution Next Question