What is the proper script syntax to accomplish this requirement?

Posted by: Pdfprep Category: 3312 Tags: , ,

If the call is not queued and the skillset is in service. It must be re-queued.

What is the proper script syntax to accomplish this requirement?
A . Section wait_loop
IF NOT QUEUED THEN
IF OUT OF SERVICE SKILLSET automotive THEN
GIVE RAN out_of_service_ran_gv
DISCONNECT
END IF
END IF
GIVE RAN agts_stlll_busy_ran_gv
WAIT 30
EXECTUTE wait_loop
B . Section wait_loop
IF NOT QUEUED THEN
IF NOT OUT OF SERVICE automotive THEN
QUEUE TO SKILLSET automotive
WAIT 2
ELSE
GIVE RAN out_of_service_ran_gv
DISCONNECT
END IF
END IF
GIVE RAN agts_still_bu5y_ran_gv
WAIT 30
EXECTUTE wait_loop

C . Section wait_loop
IF QUEUED AND IF OUT OF SERVICE automotive THEN
GIVE RAN out_of_service_ran_gv
DISCONNECT
END IF
END IF
GIVE RAN agts_still_busy_ran_gv
WAIT 30
EXECTUTE wait_loop
D . Section wait_loop
IF NOT QUEUED AND IF NOT OUT OF SERVICE SKILLSET automotive THEN
GIVE RAN out_of_service_ran_gv
DISCONNECT
END IF
END IF
GIVE RAN agts_still_ran_gv
WAIT 30
EXECUE walt_loop

Answer: B

Leave a Reply

Your email address will not be published.