Sep 14, 2010 #1 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
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
Sep 14, 2010 1 #2 Utreg IS-IT--Management Jul 22, 2002 466 NL 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. Upvote 0 Downvote
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.