I wanted to select CI from Configuration item field on incident list view but it is not showing any record. how can I display CI records for configuration item field for incident list view
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-07-2018 08:36 PM
Hi Every One,
Please help with the below issue I am encountered.
I wanted to select CI from Configuration item field on incident list view but it is not showing any record. how can I display CI records for configuration item field for incident list view.
Thanks in Advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2018 04:00 PM
Hello DPV
Try different browser and see if does make any difference
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2018 04:09 PM
Hi Dpv,
Most probably your configuration_item field have some sort of filtering/reference qualifier that is limiting the amount of CIs that are retrieved according to the combination of items previously selected.
Go to the dictionary configuration of the configuration_item and make sure you validate the settings that are set on the field. (make sure you're looking the advance view to make sure you're looking to all configuration)
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2018 04:19 PM
Out of the box, lately, the reference qualifier for the configuration item field will look something like this:
javascript: ['incident', 'problem'].indexOf(current.sys_class_name + '') == -1? '' : 'operational_statusNOT IN' + new OpsStatusFilter('cmdb_ci').by('CreateTask').join()
Thanks,
Berny
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-24-2019 06:41 AM
bernyalvarado
To have it work with change and requests as well would I need to add
javascript: ['incident', 'problem', 'change', 'request'].indexOf (current.sys_class_name + '') == -1? '' : 'operational_statusNOT IN' + new OpsStatusFilter('cmdb_ci').by('CreateTask').join()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-10-2018 04:19 PM
I hope this helps !