- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2022 01:06 PM
Hello,
I am looking to auto-populate the fields caller, assigned to and assignment group on the change request form from incident when using the UI action. I did a lot of research and but still was unable to find the best solution. It seems like it might be accomplished with modifying the UI action or a business rule but I am not sure. Any help offered would be greatly appreciated.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2022 06:50 PM
Hi @Glyph1415,
You have to add the fields/columns in Create normal change/ your UI actions UI actions.
Navigate to System UI/ System Definition --> UI actions and apply the filter as table is Incident.
Open the records with name Create normal change
Sample scripts to be added as -
changeRequest.setValue("assignment_group", current.assignment_group);
changeRequest.setValue("assigned_to", current.assigned_to);
// add your other fields/columns
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-10-2022 06:50 PM
Hi @Glyph1415,
You have to add the fields/columns in Create normal change/ your UI actions UI actions.
Navigate to System UI/ System Definition --> UI actions and apply the filter as table is Incident.
Open the records with name Create normal change
Sample scripts to be added as -
changeRequest.setValue("assignment_group", current.assignment_group);
changeRequest.setValue("assigned_to", current.assigned_to);
// add your other fields/columns
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2022 05:43 AM
I apologize for the delay, thank you for the reply!