Copy all the variables to the description field of standard change request
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2020 01:36 AM
Hi Folks,
I have created two variables for the standard change template. Is there a way to copy all the variables that could be updated on the description field of change request.
The above two variables to be copied on the description some think like this
eg:
Host Name:
IP Address:
Thanks
Johny

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2020 01:42 AM
Hi,
In your Record producer script field you can add somethig liek below
var description = "Values are "+current.variables.variable_name+"/n" +current.variables.variable_name2+"/n"+current.variables.variable_name3+"/n";
current.description = description;
current.insert();
Mark the comment as a correct answer and helpful if it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2020 02:41 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-04-2020 04:25 AM
Hi,
You need to write this in the RP script field and it will be updated in the newly created change request description field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2020 10:49 PM
Hi,
The picture i attached is from RP. When I open standard change record producer that above page is getting opened and script field is hidden with ACL.
I had overridden that to display on the form for testing.