Task

yardenKrispel
Tera Contributor

How do I transfer the assignment to in the incident form to the field I created in the task table?

4 REPLIES 4

H S B
Giga Guru

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.

Community Alums
Not applicable

Can you be more specific what you want to achieve ?

Pankaj kr
Kilo Sage

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