" /> CCpulse action problem - Genesys CTI User Forum

Author Topic: CCpulse action problem  (Read 8039 times)

Zygis

  • Guest
CCpulse action problem
« on: January 01, 1970, 12:00:00 AM »
Advertisement
How do you hide logged out agents in the object view in CC Pulse?

Answer/Resolution:

1) Create the following thresholds:

Check Login <------------------- This is the threshold name

if Threshold.StatValue = StatAction.SDNALoggedIn then
Threshold.Result = true
else
Threshold.Result = false
end if


Check Logout <------------------- This is the threshold name

if Threshold.StatValue = StatAction.SDNALoggedOut then
Threshold.Result = true
else
Threshold.Result = false
end if


2) Create the following actions:

ShowAgent <------------------- This is the action name

CCPulseNotifier.Show


HideAgent <------------------- This is the action name

CCPulseNotifier.Hide


3) Create a workspace with Agents in the Object tree

4) Select several Agents in the Object view, rightclick, select Threshold
from the popup menu.

5) Assign the thresholds/actions

6) Press OK

7) Test it

It should now hide logged out agents in the object view.


I did this steps, but whan I want to create action "CCPulseNotifier.Hide" I got an error: object doesn't support this property or method: "CCPulseNotifier.Hide"
Where is may mistake?

Fariborz

  • Guest
CCpulse action problem
« Reply #1 on: January 01, 1970, 12:00:00 AM »
  • Best Answer
  • With a CCPulse version 6.1.000.03 it works.
    No error is detected.

    Zygis

    • Guest
    CCpulse action problem
    « Reply #2 on: January 01, 1970, 12:00:00 AM »
  • Best Answer
  • hello.
    Can it work with 5.2?

    Zygis

    • Guest
    CCpulse action problem
    « Reply #3 on: January 01, 1970, 12:00:00 AM »
  • Best Answer
  • I tried, and it works only from 6.1 version.

    Ritchie

    • Guest
    CCpulse action problem
    « Reply #4 on: January 01, 1970, 12:00:00 AM »
  • Best Answer
  • I don't believe it works in the same way in 5.2 as in 6.x. There is a way but I'm sure its a bit of a 'hack'. Look at the FAQ's on Genesys website the answer is there.