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!

CC6 Scripting, Allow or Block specific digits in collection 1

Status
Not open for further replies.

schmitzfl

Technical User
Mar 5, 2008
11
US
I would like to Allow and Block specific blocks of 4 digit DNs in my Auto Att script in CC6.0

Example;
Allow
55XX
39XX
74XX
64XX

XX = Wild digits
Block all other 4 digit DN's and route to a Skillset
 
Try:

IF (CLID <> Allowed_Clids) THEN
Disconnect
END IF
/* Route to Skillset */

Create a variable 'Allowed_Clids' with type = 'CLID' and add your set of values:
55??
39??
74??
64??

The ? is a placeholder so this will trigger only on 4 digit CLIDs.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top