Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can someone check my scripting...not using if statement

Status
Not open for further replies.

Telecomlady

Programmer
May 22, 2006
143
US
Is this a correct statement in Symposium? These agents are not getting calls. I want the SLSINTPAY_5103 to get calls after 1 min in queue. I'm I doing this correctly?

IF (AGE OF CALL >60) THEN
IF NOT OUT OF SERVICE SLSINTPAY_5103 THEN
QUEUE TO SKILLSET SLSINTPAY_5103
WAIT 2
END IF
END IF

Thanks in advance!
 
Is that the full script???
It has no treatment listed for calls <60secs.
Is there a wait 60 beforehand, or is part of a larger script that has been queing to a different skillset for 60 secs?
 
This is a new portion of the script that I added. It has been queueing to other scripts prior to this statement.
 
That should work then.
Do people have that skillset added to them?
Is the call progressing to that part of the script ie the call is not left in a loop section.
Can you post the whole script??

 
is it working? here's one of my age of call

Code:
wait 2  

        
    SECTION CHECK_AGE
       IF(Age of Call > 20) THEN
         IF NOT OUT OF SERVICE Operators_Super THEN
           QUEUE TO SKILLSET Operators_Super
             WAIT 2

       END IF

reading the two, i don't see a show stopper

john poole
bellsouth business
columbia,sc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top