I have implemented screenflow in the application . For the flow, I have given a SLA in the process tab .
On executing case , the goal and deadline is not displaying in the newAssignsPage - .pxDeadlineTime in empty and pxGoalTime is not present in the newAssignsPage.
Any help on how to resolve this and display the goal and deadline for screenflow WQ routing would be appreciated .
Thank you
@dd002 I think Process level SLAs are not tied to a single assignment so they would not be appearing on the newAssignPage. There would be an instance of internal assignment where the sla details would be present.
@BhanuPrakash_G , Is there any way on populating the goal and deadline in the UI similar to how it is for assignment level SLA ?
Solution :
For assignments, the goal and deadline is stored in pzInternalProcessFlow in .pxAssignGoalTime property and .pxAssignDeadTime proeprty . So, if these values are populated in newAssignPage , then sla for screenflow can be achieved .
In the NewDefaults activity , set goal and deadline time in the newAssignPage to hold the values from the pzInternalProcessFlow by using getPropertyValueFormPage() .
@dd002 Hi Deepika, so you have configured the SLA in the first assignment of the screenflow. In the NewAssignpage .pxGoalTime and .pxDeadlineTime were empty because of which SLA was not triggered. But you were able to see both the properties in pzInternalProcessFlow(firstassignment). You have used NewDefault activity to set the goal and deadline from pzInternalProcessFlow(firstassignment) to NewAssignPage. Is my understanding correct?
@Anoop Krishna Yes, that’s correct .
@Anoop Krishna , the SLA can be configured for the entire screenflow , not in particular to any assignment .
So for screenflows , the SLA was basically being stored in pzInternalProcessFlow , so SLA was visible only for the first assignment in the screenflow and not for all the consecutive assignments.
@dd002 Ok, even though you have configured SLA for entire screen flow, but SLA got stored in pzInternalProcessFlow(also only for 1 assignment) and you have set detail to NewAssignPage from pzInternalProcessflow because of which SLA got applied to all the assignments in the screenflow.
@dd002 thank you for letting me the solution. Please mark your solution as accepted.