- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2024 03:20 AM
Script include returns array of values, which we can see in logs. But in the catalog item variable nothing is getting displayed.
Please do the needful.
Regards,
Anus
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2024 05:59 AM
Hi @Anusha Anus ,
Everything is correct in your case, you just need to make small change in your Script Include on Line 11.
Your Line 11 is like below:
ans.push(grinc.number.toString());
Just change it like below:
ans.push(grinc.sys_id.toString());
As you have applied query sys_idIN<pass the list sys_ids of incidents instead of numbers>
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2024 11:24 PM
Thanks @Anil Lande its working now😊