Reputation: 111
How to create a report that give me the list of all the changes and it's associated "Affected CIs". So for e.g. I have a change ticket created in servicenow CHG00001 with following values for Configuration Item and Affected CIs:
So when I create a report I need these information including all the affected CIs, but I don't see a way to pull that information.
Upvotes: 2
Views: 6481
Reputation: 16245
You want to use the CIs Affected [task_ci]
table. This is the table that contains the links between the Change Requests and the Configuration Item.
The Task
field in this table contains the reference to the Change Request.
In your report, try something like this
Selected columns
Filter
You can expand the Task reference in your selected columns to get more details on your Change Request if needed, or filter them deeper.
If you've filtered the Task type as Change Request, you can select the extended table Change Request and filter it that way
Filter
Upvotes: 2
Reputation: 516
You can use Database Views to create a single table created from multiple tables. Then you can use that table to show the report from.
There is a great video about this here. There is also a possibility to have multiple data sets on the same report.
Upvotes: 0