Genesys CTI User Forum

Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: Sylvainsjc on June 05, 2007, 11:43:31 AM

Title: Routing Strategie - Custom Statistic for CCPulse
Post by: Sylvainsjc on June 05, 2007, 11:43:31 AM
Hi all,
I'm deploying a strategie with CED choices to make decision routing.
In the main menu, some choices are for informations guides and at the end, the caller can return to the main menu to make another choice.
My wish is to count in CCPulse the number of times all the calls have reached the main menu.  For a caller it could be 1  For other it could be 2.
In CCPulse i need to see growing statistic like :
- Total_call_entered=100
- Total_Choice_SVI=115

Somebody has an idea ??
Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: catanirex on June 05, 2007, 01:37:07 PM

Suggestion:
Copy TotalCallsEntered on StatServer options and add it with a new name TotalCallsEnteredTotal (just an example). Make sure that you delete the Formula=DCID, because otherwise the call will only be counte the first time. (I assume that the call keep its original ConnID?) Add this stat in a column in CCP.
Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: Peter J on June 06, 2007, 04:17:56 AM
TotalCallsEntered without DCID will do the trick!


Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: René on June 06, 2007, 06:54:52 AM
Hi Sylvainsjc,

You have to create separate strategies for each part of your "IVR tree" and load these to the Routing Points. Then TotalCallsEntered without DCID is what you're looking for.

René
Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: Sylvainsjc on June 06, 2007, 07:06:26 AM
Ok for the DCID but after thinking about this, i must use a virtual queue when i reach the main menu and clear this VQ when the caller wants to return to the main menu.
For information the switch is an Alcatel Oxe with feature RSI (capabilities to play guides, tones and collect digits,etc) and i don't leave the strategie to play the main menu with a script in an SVI like GVP or Voice Genie.
Without this, there is no way to count the number of passage in the main menu ?
Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: catanirex on June 06, 2007, 07:51:14 AM
Can you add an u-data to the call, for example TimesInMainMenu, and increase it by 1 every tim the call enters the main menu?

If so, you can add columns in CCP and filter on it.
For example, TimesInMainMenu=1, TimesInMainMenu=2, TimesInMainMenu=3, TimesInMainMenu=4, TimesInMainMenu>=5

Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: cavagnaro on June 06, 2007, 12:37:34 PM
I have once did that. The way catanirex suggests is the correct one.
I also use full Alcatel RSI objects and it works, the logic and controls are a little bit to care off but nothing too complex.
Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: Sylvainsjc on June 06, 2007, 01:10:08 PM
Thanks for your answers but i'm not sure to understand.
My need is to count FOR ALL CUMULATED CALLS the number of passage in the SVI main menu. Example : for 500 calls it could be a value of 600 if some callers use more than one time the main menu.
The attached data are cleared when the call is finished isn't it ?  And the customer also need historical for this. This is why i think using VQ is the only way to do this.
Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: bublepaw on June 19, 2007, 05:50:54 PM
You can use following trick in strategy

invoke SelectDN[VQ_NAME,'','',StatSelectMax,'','','','','','','','','',''] when You enter main menu and ClearTargets[VQ_NAME] when You leave main menu. Using this trick You can count number of passes and total time user spend in menu.

Regards

Paul
Title: Re: Routing Strategie - Custom Statistic for CCPulse
Post by: Sylvainsjc on June 19, 2007, 10:09:08 PM
Thank you Paul, that what i've made and it works fine.