" /> IRD Statistic ServiceFactor1 bringing 0 - Genesys CTI User Forum

Author Topic: IRD Statistic ServiceFactor1 bringing 0  (Read 9152 times)

Offline gzooby

  • Full Member
  • ***
  • Posts: 141
  • Karma: 0
  • Software Engineer at Telefax S.A.
Re: IRD Statistic ServiceFactor1 bringing 0
« Reply #15 on: October 06, 2014, 03:35:31 PM »
Advertisement
In CCPulse, I only have defined main mask, not relative, and the value is 97.23, however, in URS, is coming value '0'

Offline gzooby

  • Full Member
  • ***
  • Posts: 141
  • Karma: 0
  • Software Engineer at Telefax S.A.
Re: IRD Statistic ServiceFactor1 bringing 0
« Reply #16 on: October 06, 2014, 03:49:49 PM »
Problem solved, when defining statistic in IRD, instead of putting in the intervarl section option "Growing Window", I put the same than in ServiceFactor default statistic, "Last 600 seconds".

Thank you all for your help!

Offline gzooby

  • Full Member
  • ***
  • Posts: 141
  • Karma: 0
  • Software Engineer at Telefax S.A.
Re: IRD Statistic ServiceFactor1 bringing 0
« Reply #17 on: October 06, 2014, 04:21:10 PM »
In fact, itīs working just for queues, if I try the same of group of virtual queues is bringing '0'

Offline gzooby

  • Full Member
  • ***
  • Posts: 141
  • Karma: 0
  • Software Engineer at Telefax S.A.
Re: IRD Statistic ServiceFactor1 bringing 0
« Reply #18 on: October 14, 2014, 01:20:24 PM »
I solved it!
The solution is just disturbing.
Instead of calling <NAME_OF_GQ>@reporting_statserver.GQ , i have to first store the name of the group of queues into a string variable, and then call function sdata like this: <VARIABLE_NAME>@reporting_statserver.GQ and it works perfectly.

Thank you all, so group of queues service factor through strategy is possible! Hope it helps somebody else

Regards, Z

Offline gzooby

  • Full Member
  • ***
  • Posts: 141
  • Karma: 0
  • Software Engineer at Telefax S.A.
Re: IRD Statistic ServiceFactor1 bringing 0
« Reply #19 on: October 17, 2014, 04:04:08 PM »
ithin the CME:

1). In the "DN Groups" folder, create a DN Group of type "ACD Queues".

      For the purposes of the following example, the name of this DN Group will be "QG1" and this DN Group will be referred to as a Queue Group in the text below.

2). Drag and drop the ACD Queue dns from the DNs folder of the switch which you wish to add to the QG1 Queue Group.

In the strategy (Designer):

      For the purposes of this example, the canned StatCallsInQueue statistic will be used to obtain the number of calls queued in QG1:

3). Create a variable (type integer) in which the number of calls in queue value will be assigned to. ex: variable "CallsInQ".

4). Create a variable (type string) in which the Queue Group is to be specified. In this example, the name of this variable will be GQ_Var. When using the Assign function to assign name of the Queue Group to the GQ_Var variable, it will be necessary to manually enter the name of the Queue Group into the Expression window of the Function object - encased in single quotes.

      Example -> GQ_Var = 'QG1@StatServer.GQ'

5). A regular Function object can be used to populate the CallsInQ variable with the number of calls queued in QG1. This requires using the SData function, in conjunction with the GQ_Var, in the Expression window of this Assign function as follows:

      CallsInQ = SData[GQ_Var,'StatCallsInQueue']

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: IRD Statistic ServiceFactor1 bringing 0
« Reply #20 on: October 17, 2014, 05:56:15 PM »
Thanks a lot for such details on solution :D but for me is kinda a bug, there is no reason at all that you need to create another variable...any chance you can open a eST with Genesys?

Offline gzooby

  • Full Member
  • ***
  • Posts: 141
  • Karma: 0
  • Software Engineer at Telefax S.A.
Re: IRD Statistic ServiceFactor1 bringing 0
« Reply #21 on: October 17, 2014, 05:58:37 PM »
Yes, the thing of creating a variable is crazy, yep, actually I found this information in a Genesys case...so the thing is thy know there is a bug, but they didnīt fix it yet.

Hope it helps! Thank you all