Nortel Meridian Meridian 1 Scripting Manual page 256

Contact center manager
Hide thumbs Also See for Meridian Meridian 1:
Table of Contents

Advertisement

Advanced script commands
END IF
Example 2
This example illustrates simple load sharing across a network by routing
alternate calls to a network skillset. The first call queues locally. The next call
queues to the network, the third call queues locally, and so on.
READVAR wv_alternate_cv
IF wv_alternate_cv = 1 THEN
ELSE
END IF
SAVEVAR
IF wv_alternate_cv = 1 THEN
QUEUE TO SKILLSET Sales
WAIT 2
ELSE
QUEUE TO NETWORK SKILLSET Sales
WAIT 4
END IF
Calls that enter a script where there is a READVAR/SAVEVAR block use the
value set in the wild variable table only when the call itself enters the
READVAR/SAVEVAR block. If you write the script so the call does not enter
the block, the call then assumes the default value from the script variable as
assigned in OAM, or the value assigned to it through the script commands.
Example 3
The following example shows how one call changes the value stored in the wild
variable table, and the other call reads that value and acts on it.
IF DNIS = emergency_act_number THEN
/* Call who sets the emergency state */
256
ASSIGN 0 TO wv_alternate_cv
IF wv_alternate_cv = 0 THEN
ASSIGN 1 TO wv_alternate_cv
END IF
Standard 8.04
Contact Center Manager

Advertisement

Table of Contents
loading

Table of Contents