Options
- 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:
- Labels:
-
Instance Configuration
1 ACCEPTED SOLUTION

Options
- 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
Please appreciate the efforts of community contributors by marking appropriate response as correct answer and helpful, this may help other community users to follow correct solution in future.
Thanks
Anil Lande
Thanks
Anil Lande
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā08-16-2024 08:01 PM
You should able to find the below function, in script include named as ScrumSecurityManagerDefault
getStoryDotProduct: function () {
var recModelSysIds = [];
var recCmdbModel = new GlideRecord ("cmdb_application_product_model");
recCmdbModel.query ();
while (recCmdbModel.next ()) {
recModelSysIds.push (recCmdbModel.sys_id + "");
}
return recModelSysIds;
},