- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-06-2022 08:55 AM
any idea whats this filetrs do in refernce qualifier of product on story form ?
Solved! Go to Solution.
- Labels:
-
Instance Configuration

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-06-2022 09:31 AM
Hi,
This reference qualifier returns comma separated list of sys_id's from table "cmdb_application_product_model"
Thanks,
Anil Lande
Thanks
Anil Lande

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-06-2022 09:20 AM
Hi Supriya,
> You have a script include named : ScrumSecurityManager
> In that script include you have a function named : getStoryDotProduction
> You are passing current record value to that function in that script include
> that script include process the code in it and return an array of values
> You are converting the array to comma seperated string using join() function.
> Now applying the query as sys_id IN those values.
For example:
The ScrumSecurityManager.getStoryDotProduction(current) calls the script include
You are getting return array from above call as [a,b,c,d]
Using join it will become string "a,b,c,d"
Now your query becomes sys_idINa,b,c,d
It means Filter all records whose sys id is a or b or c or d
Mark as correct and helpful if it solved your query.
Regards,
Sumanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-07-2022 12:49 AM
Hi,
Is your query solved? If not feel free to ask your questions or else mark an answer as correct and helpful and close the thread.
Regards,
Sumanth

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-06-2022 09:31 AM
Hi,
This reference qualifier returns comma separated list of sys_id's from table "cmdb_application_product_model"
Thanks,
Anil Lande
Thanks
Anil Lande
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā04-07-2024 09:40 PM
Can you please let me know the name of the script include. I have seen scrumSecurityManager script but there I can't get this function