Task
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2023 07:47 AM
How do I transfer the assignment to in the incident form to the field I created in the task table?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2023 09:21 AM
Can you please elaborate the requirement a little bit or maybe attach few screenshots of what you are trying to achieve?
As of now, the details given doesn't clarify the requirement.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2023 09:24 AM
Can you be more specific what you want to achieve ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2023 09:32 AM
you can use client-side scripting to do the same if you want to do this in the incident table as below-
g_form.setValue('target_field',g_form.getValue('assigned_to'));
else you can do below if the field is in task table and you want to copy it to task table.
var gr= new GlideRecord('incident');
gr.get('incident_sys_id');
g_form.setValue('assigned_to',gr.assigned_to);
Please mark it as helpful if i addressed you issue and solved it, else please clarify it with example.
Thanks,
Pankaj Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-21-2023 10:53 AM