We've updated the ServiceNow Community Code of Conduct, adding guidelines around AI usage, professionalism, and content violations. Read more

How do i auto populate the short description field of a change request through a Record producer.

Not applicable
 
6 REPLIES 6

Not applicable

Hi @Community Alums ,

You can easily write the below script-
Try adding the below in the script section of the record producer

 

if (current.table_name == 'change_request') {
current.short_description = producer.variable_name; //variable_name is the field on the record producer form
// remaining code 
}

 

 

 

Runjay Patel
Giga Sage

Hi @Community Alums ,

 

In record producer do the variable mapping to short description.

RunjayPatel_0-1731746873943.png

 

 

-------------------------------------------------------------------------

If you found my response helpful, please consider selecting "Accept as Solution" and marking it as "Helpful." This not only supports me but also benefits the community.


Regards
Runjay Patel - ServiceNow Solution Architect
YouTube: https://www.youtube.com/@RunjayP
LinkedIn: https://www.linkedin.com/in/runjay

-------------------------------------------------------------------------

Part 1. This video serves as the introductory episode of the ServiceNow Fundamental Course playlist. Here, I've outlined the course content that I'll be delving into throughout this series. For document please visit: https://servicenowwithrunjay.com/ Follow Facebook page for latest update on ...

Sohail Khilji
Kilo Patron

Hi @Community Alums ,

 

In the record producer you would find a scrip field were you need to make a entry like below:

 

current.short_description = producer.your_variable_name; //here replace the 'your_variable_name' with actual variable name

☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....

LinkedIn - Lets Connect