Genesys CTI User Forum
Genesys CTI User Forum => Genesys CTI Technical Discussion => Topic started by: S2H on December 16, 2015, 03:29:52 PM
-
Hi,
How to show what skill in realtime that an agent is on? And, how to do display it the pulse.
And i tried in Pulse by using the formula,
Result = G.GetSkill(Data.Current_Status.Value). But, it is not working. Please help me to solve this issue.
Thanks in advance
-
Skills by 100th time is part of Configuration layer, not reporting layer. You can't by default
On Ccpulse users did a trick to query the CfgServer DB to show this information.
Pulse is far more restricted right now
-
Thanks for your reply. I will look into it.
-
Hi
I understand what you are saying, but in the same vain - if you had a custom kvp that you attached as user data during the call. Why can't you adjust the formula Result = G.CustomKVP(Data.Current_Status_KVP.Value); and add the filter in Stat server? since Service Type is just a KVP that's attached just the same way
-
Hi,
by "pulse" do you mean CCPulse or Pulse solution?
-
Hi kubig,
I meant Genesys Pulse (GAX plug-in application).
-
Thanks maxwell...
-
Hey S4,
From Genesys Customer Care:
You can use next formula in order to display desired userdata:
Result = G.GetUserDataValue(Data.Current_Status.Value,'user_data_key');
Please note, that you should have Current_Status statistics with 'User Data' checkbox enabled in the same widget.
Don't forget to add corresponding filter to StatServer options: user_data_key=PairExists(UserData,"user_data_key", "*"). You can replace '*' with any particular value.
Goodluck
-
Hi maxwell,
Thanks for your reply. And, your answer helped me a lot.