- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-05-2016 07:50 AM
I have to copy short description and some other variables of a record producer, into the short description of the incident created by the record producer and the variables values should be displayed in the activity filter of new incident.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2016 04:59 AM
In the case where you want to copy a variable to a field with a different name (but same data type), you can use the script field on the record producer.
current.field_name = producer.variable_name;
This will copy the value of variable_name to the target records field_name. Section 2.1 here...
http://wiki.servicenow.com/index.php?title=Record_Producer

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-06-2016 05:26 AM
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
If you are viewing this from the community inbox you will not see the correct answer button. If so, please review How to Mark Answers Correct From Inbox View.
Thank you