The CreatorCon Call for Content is officially open! Get started here.

How to copy short description and other field variables from record producer to incident created from it

k_jayanth
Tera Contributor

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 producerSR.png and the variables values should be displayed in the activity filter of new incident.

1 ACCEPTED SOLUTION

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


View solution in original post

5 REPLIES 5

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