- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2023 11:11 AM
Hi Experts
I want to set my incident short description based on my record producer variables. If I select the issue type is training completed my incident short description should be "new training" . If I select the issue type is epic the short description of my incident ticket should be "new epic". How to finish this task ??
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2023 11:51 AM
Hi @dhineshkumar ,
Add below code in Record producer script- Make changes to match issue type backend name and issue type choice values
if (producer.issue_type== 'training_completed'){
current.short_desciption="new training";
}
if (producer.issue_type== 'epic'){
current.short_desciption="new epic";
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2023 11:20 AM
You can open the record producer and look at the record producer script.
Modify the line that sets short description and add the way you want it to be.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2023 11:27 AM
Here is an eg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2023 11:51 AM
Hi @dhineshkumar ,
Add below code in Record producer script- Make changes to match issue type backend name and issue type choice values
if (producer.issue_type== 'training_completed'){
current.short_desciption="new training";
}
if (producer.issue_type== 'epic'){
current.short_desciption="new epic";
}