Issue with Dynamic Filter Option
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
an hour ago
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
41m ago
1. For many dynamic filter configurations, the Script Include must be marked as Client Callable to be accessible by the filter engine . You ensure the same.
2. call
From: new global. SoxUtils().getSoxRelatedCis()
To: (new SoxUtils()).getSoxRelatedCis()
3. In script include ,
instead of
return 'sys_idIN' + unique.join(',');
Use
return unique.toString()
And then call by new global. SoxUtils().getSoxRelatedCis()
4. Line 33 , I have never tried, just before ,after put log and check what your getting.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
8m ago - last edited 4m ago
Hi @ArpitB207098286 ,
Make sure to set "Sandbox enabled" to TRUE on your script include.
Test it from a background script first to make sure the sys_id's are being returned correctly from the script include.
Also, as @Tanushree Maiti mentioned, remove the 'sys_idIN' part when returning from script include.
Let me know if this works,
Marius