- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-24-2019 12:35 PM
We have HR case management setup in our organization. Someone has asked if an approval can be added to a record producer form from the HR service portal.
I don't think we're task based so, would it be difficult to add an approval process to specific record producers? Would it just be a matter of adding a workflow to any given record producer? How would the case lifecycle look?
Solved! Go to Solution.
- Labels:
-
Case and Knowledge Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-18-2019 08:23 AM
Per ServiceNow, the workflow that checks for approvals was skipping over the evaluation.
In the HR Service Activities workflow under "Is there an approval step" stage, the second if statement was missing some additional conditions:
While the version I had only contained:
if (serviceTemplates.next()}
return 'yes';
It should have been:
if (serviceTemplates.next()) {
workflow.scratchpad.serviceActivity = serviceTemplates.getUniqueValue();
return 'yes';
I don't believe this was modified by anyone and may have been a bug but this is what ServiceNow had modified to make it work.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2019 03:17 AM
Hi,
Approval can be added in HR case, you can use either "Service Activity" or "Life Cycle Event" to send the approval. If you want to send Approval without any conditions the Use "Service Activity" Or if you want to send Approvals in any specific conditions then use "Life Cycle Event".
Please mark helpful/correct if its applicable.
Thanks,
Vinay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2019 08:50 AM
I've made a modification to one of our services to test it however the approver doesn't appear in the case after creation. The related list is present in the form. What could be missing?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2019 04:25 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-03-2019 12:56 AM
May I ask where have changed the manager of the user is it on the HR profile table?