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

Community Alums
Not applicable
 
6 REPLIES 6

Community Alums
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 4. In this video i have talked about ServiceNow form, list, menu, sub-menu, application, table and more basic thing which are necessary to know. For document please visit: https://servicenowwithrunjay.com/ Follow Facebook page for latest update on upcoming videos: ...

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