First Call Resolution

magoo
Kilo Expert

I have been asked to create a new metric for first call resolution.   Currently we use the out of box (opened and closed (no save etc in-between) The business would like to have a First call resolution that is calculated with the following parameters;

 

Incident was taken via phone

Incident was not routed (creator is the same as resolver)

Incident was marked resolved within 1hr of create time.

 

Does anyone have a metric setup that is similar?\

 

Steve

1 ACCEPTED SOLUTION

Bhavesh Jain1
Giga Guru

I agree with the above suggestion provided. In case you are looking for the code, here it is :



1. Create a checkbox field First Call Resolution on incident table


2. Write onBefore business rule on incident table


3.   Script below


if(current.contact_type == 'phone' && current.caller_id == current.resolved_by && current.opened_at > gs.hoursAgo(1))


{ current.u_fcr = true;}



Regards,


Bhavesh


IGate-logo.png


http://www.igate.com


View solution in original post

4 REPLIES 4

TJW2
Mega Guru

One idea is to create a BR when INC resolved.   Check the other conditions and set a 'FCR' flag on the INC record.   You could then report on all INC where FCR is true.


Bhavesh Jain1
Giga Guru

I agree with the above suggestion provided. In case you are looking for the code, here it is :



1. Create a checkbox field First Call Resolution on incident table


2. Write onBefore business rule on incident table


3.   Script below


if(current.contact_type == 'phone' && current.caller_id == current.resolved_by && current.opened_at > gs.hoursAgo(1))


{ current.u_fcr = true;}



Regards,


Bhavesh


IGate-logo.png


http://www.igate.com


Hi Bhavesh,



A small query(correct me if i am wrong):-


Why would current.caller_id == current.resolved_by be there in the BR condition?


Shouldn't it be current.opened_by == current.resolved_by?



Thanks,


Subhajit


I guess yes.


It should be current.opened_by == current.resolved_by;