We have a client who requires the following for agents:
As an agent before I close the ticket I need the system to alert me to enter time if I haven’t done it
Will this be possible - either out of the box or via customisation?
You could do it with the Power Scripts add-on:
You could create a validator with a code like this:
number[] worklogs = getWorklogIdsForUser(currentUser(),key);
if (size(worklogs) > 0) {
return true;
} else {
return false, "Enter worklog";
}
You can find more info about validators here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows
Hi Christine,
YOu can do this with Automation.
So the Trigger would be Issue Resolution changed. The IF would be jql (Time Spent is EMPTY) and the THEN would be to Alert yourself.
OR what we do is add in a validation rule when an issue transitions from In Progress to resolve, we display the TIme tracking fields and then validate that Time Spent must be > 0. Enforces all our agents to record their time when they are completing their issues.
Hope this helps...
Susan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.