Incident FCR report to filter out cases OnHold/Pending

vivek72
Tera Guru

Hi,

 

I am building a FCR report for which below are the requirements :

 

1. Incidents which were put on hold anytime during Incident lifecycle from New to Closed, must be excluded from the report.

2. Incidents created and resolved on same group should be added to report.

 

Point 2 can be achieved from reassignment count but I am not sure on how to achieve point 1.

 

Please suggest if anyone has done this before.

 

Thanks,

Vivek

1 ACCEPTED SOLUTION

You'd run the code in a background script to amend the filter condition as the UI doesn't allow you to do it (but the functionality is supported)

I've attached the data source record too

View solution in original post

9 REPLIES 9

Sohail Khilji
Kilo Patron
Kilo Patron

Hi @vivek72 ,

 

Usually a resolved incident has a reassignment count of 0 it is considered a first call resolution. (There are many definition that org describe it).

 

In your case your trying to exclude onhold state. So, will you be using the OOTB reassignmet counter BR or it doesnt matters to you ?

 

 

 

 


☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....

LinkedIn - Lets Connect

Kieran Anson
Kilo Patron

My solution would be to use a metric definitions for incidents placed on hold. You can then use a related query on the report to filter data out.

 

OOB there is an existing metric you could leverage 'Incident State Duration'

 

FYI be careful on point two if your 'assignment group' field is not mandatory OOB. The OOB BR 'reassignment counter' will increment if a saved record without an assignment group is then later populated by an assignment group

Ramz
Mega Sage

Hi @vivek72 ,

Create a database view with incident and incident_metric table and put filter condition from it 

 

Please mark my answer correct/helpful if it resolved your query

vivek72
Tera Guru

Hi @Sohail Khilji , @Kieran Anson , @Ramz ,

 

Thanks for replying.

 

Yes, I will be using the OOTB reassignment counter BR to check if reassignment count is 0 for adding incidents in this FCR report.

However, for excluding Incidents that were put on hold, that information can only come from Incident Metric table.

So I guess I need to create a DB view only as suggested by @Ramz as there is no single table which can give me all required information.

I started building my report in Incident table initially.

 

Hi @Kieran Anson ,

 

Is your solution requires table to be selected as Incident and then selecting related list as Metric Definition to put filter conditions.

If this works, then it would be best for me.