cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
861
Views
1
Helpful
8
Replies

How to set CED node to collect a certain number of digits

JayMoore37655
Level 1
Level 1

Hello,

I'm try to set the CED node for script editor 12.5 to allow user to enter in 3-4 digits to then concatenate in the subsequent label node. For example, the caller is prompted to enter 3-4 digits for to be transferred to an extension. The label node is set to concatenate the prefix numbers with Call.CallerEnteredDigits.  Is there a formula that can be used in the properties to accomplish this?

1 Accepted Solution

Accepted Solutions

What are you looking for with the prefix digits? So like set the variable/label to be ("700" , Call.CallerEnteredDigits) for instance?

View solution in original post

8 Replies 8

What are you looking for with the prefix digits? So like set the variable/label to be ("700" , Call.CallerEnteredDigits) for instance?

Why don’t you use CVP microapps to get several digits collected?

Kostia
——
Contact Center Consultant
Konstantin Vaksin
----
Helping with Contact Center Solutions

I may have to employ this strategy but was curious if this was possible within the CED node in script editor

If the script was more complex, I would've utilized this method. Thank you so much for your help @Konstantin Vaksin exCisco !

No I’m looking to put a formula in the CED node for the caller to enter in a maximum of 4 digits. Those 4 digits would then be appended in a label node to a 6-digits prefix

Here you can find formula how to add prefix to the collected CED
<>
[ciscooglogo.png]
Re: how to add prefix to the CED and route to that number<>
community.cisco.com<>

Regards,
Kostia
——
Contact Center Consultant

Konstantin Vaksin
----
Helping with Contact Center Solutions

So you just do a concatenate("123456or_whatever_your_prefix_is",Call.CallerEnteredDigits). Is that not what you're looking for?

This works out perfect! Thanks @bill.king1 !