" /> How to display skillset name and agentloggedinExten in CCPulse? - Genesys CTI User Forum

Author Topic: How to display skillset name and agentloggedinExten in CCPulse?  (Read 5170 times)

Offline prempreet

  • Newbie
  • *
  • Posts: 23
  • Karma: 0
How to display skillset name and agentloggedinExten in CCPulse?
« on: January 28, 2013, 10:49:22 AM »
Advertisement
Hi,

There is one requirement from customer in ccpulse

An agent can be part of two or three skillsets. If the agent receive the call from "English" skillset, then that "skillset" name should display in the ccpulse template for Agent or Agentgroup.

Also customer want to display "AgentLoggedin" extension in the same template.

Related to my requirement, i have seen some article here & followed the same steps

1) In the IRD callflow, we are attaching "SkillSetName" i.e SkillSetName = 'English'

2) Created the filter in DMA. IRD SkillSetName & filter name is same.

After that, we are unable to proceed further. Do we need to create any stat?

Please help me with the procedure.

Regards
Prem


Offline Kubig

  • Hero Member
  • *****
  • Posts: 2755
  • Karma: 44
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #1 on: January 28, 2013, 11:55:20 AM »
Do you want real-time or historical statistics? This play generally role.

Offline prempreet

  • Newbie
  • *
  • Posts: 23
  • Karma: 0
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #2 on: January 28, 2013, 12:38:20 PM »
Only Real Time

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2755
  • Karma: 44
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #3 on: January 28, 2013, 02:08:15 PM »
So,why you configure anything in DMA?! DMA is only for configuring historical statistics. Do you have ever seen and configure Genesys?

Offline Adam_W

  • Full Member
  • ***
  • Posts: 171
  • Karma: 0
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #4 on: January 28, 2013, 02:59:42 PM »
You can configure filters in DMA though so prempreet could be using this because it's a slightly friendlier interface than directly on Statserver.

One way of solving this problem would be to add several "Current Talk Time" stats to your CCPulse view, each with a different one of your skill filters applied.

Then you could use these stats in a formula to display the skill name based on the current talk time for that skill being greater than zero.

Something like this in the formula design:

[code]result.Text = CalculateSkill();

function CalculateSkill()

{

if (ccpulse.group("SkillTimes").statistic("CurrentTalkTime1")>0)
  {
  return "English";
  }

if (ccpulse.group("SkillTimes").statistic("CurrentTalkTime2")>0)
  {
  return "Spanish";
  }

return "Unknown";

}[/code]

Just hide the auxiliary stats in the view if you don't want to see them.

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2755
  • Karma: 44
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #5 on: January 28, 2013, 03:19:32 PM »
Yes,that is true,but is recommended,very recommended,to use separated statserver for real-time and historical statistics. Reason,that the interface for creating filters is more user-friendly is not relevant.

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #6 on: January 28, 2013, 03:42:44 PM »
Wellllll...that will depend entirely on the CC size Kubig...I have both scenarios however I do prefer having 1 StatServer only too. I know how heavy can impact but on small CC it is easier to maintain and avoid issues. On bigger CC, yes, 2 SS are recommended and a MUST.

Offline prempreet

  • Newbie
  • *
  • Posts: 23
  • Karma: 0
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #7 on: January 28, 2013, 04:15:31 PM »
Am just start working in genesys. I've created filter in DMA. So even filter also not require for this?

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #8 on: January 28, 2013, 04:42:04 PM »
Yes, you must filter and as Adam say, next step is to create a new stat with CurrentTalkTime and apply to this Stat a filter, you will need as many filters as languages you have. So if you have 3 languages, now you need 1 filter per each language and create on CCPulse 3 columns with this info. Now create another column with Adam formula, what it does is to analyze which currenttalking is working and therefore print the language being spoken on that moment

Offline prempreet

  • Newbie
  • *
  • Posts: 23
  • Karma: 0
Re: How to display skillset name and agentloggedinExten in CCPulse?
« Reply #9 on: January 31, 2013, 12:11:39 PM »
Well done..... Its working....!  :)