
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 03:55 PM
Has anyone implemented IT to HR ticket transfer? Similar functionality like HR to IT case transfer...
Solved! Go to Solution.
- Labels:
-
Incident Management

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 09:47 PM
Hello Mahesh
Create a UI Action on Incident Form:
Script: var gr = new GlideRecord("sn_hr_core_case");
gr.initialize();
gr.opened_for = current.caller_id;
gr.short_description = current.short_description;
//copy all the fields needed.
gr.insert();
current.state = "7";//close the incident
Thanks
Abhijeet Upadhyay

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-16-2018 09:47 PM
Hello Mahesh
Create a UI Action on Incident Form:
Script: var gr = new GlideRecord("sn_hr_core_case");
gr.initialize();
gr.opened_for = current.caller_id;
gr.short_description = current.short_description;
//copy all the fields needed.
gr.insert();
current.state = "7";//close the incident
Thanks
Abhijeet Upadhyay

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2018 06:56 AM
Hey thanks for your suggestion however we are using Legacy HR module since Helsinki and not the Scoped HR application. In this case would the above script?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2018 07:05 AM
Yes the above script will work fine..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2018 02:34 PM
Thanks guys figured out a way to get this working...