Ref Qualifier on CIs
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2024 01:03 AM
Hello Team, Currently the existing ref qualifier excludes retired CIs on incident and problem. Now i want to exclude on change_request table as well. I have modified and its not working on change_request table. Existing Script javascript: ['incident', 'problem'].indexOf(current.sys_class_name + '') == -1? '' : 'operational_statusNOT IN' + new OpsStatusFilter('cmdb_ci').by('CreateTask').join() Modified Script javascript: ['incident', 'problem', 'change_request'].indexOf(current.sys_class_name + '') == -1 ? '' : 'operational_statusNOT IN' + new OpsStatusFilter('cmdb_ci').by('CreateTask').join(); Regards Karthik
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-12-2024 02:29 AM
@karthik_540 OOB CI field for change_request table has Dictionary override as "javascript:new TaskUtils().getConfigurationItemFilter(current);".
Instead of changing parent reference qualifier, you can make sure to change qualifier for change_request table.
Please mark as Correct if this helps.