- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2022 07:48 PM
Hello,
I have a requirement to create an information popup message that also lists out affected CI records when a release task is created. The message should state: "The following CIs are impacted by work done in this release". I am familiar with using gs.addInfoMessage for the message, but am really struggling to write the business rule so that the affected CIs are also listed. Any help is greatly appreciated!!!
Solved! Go to Solution.
- Labels:
-
Scripting and Coding

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2022 10:09 PM
Also,
change this
ciLst.push(affectedCIs.getValue('ci_item'));
To:
ciLst.push(affectedCIs.ci_item.name.toString());
Aman Kumar

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2022 11:05 PM
Awesome!
Glad that it worked out for you 🙂
Aman Kumar