Re Question 2: Under Dialogic, digits are either allowable, or are terminating digits. They cannot be neither. (I.e. You cannot leave digits out of both fields and have them ignored)
From our testing, we suspect that what is actually happening isn't that * is terminating, but rather, it is being stored as one of the digit entered. If you wait long enough, the step leaves, so this is why it seems like the * was the termination digit. It actually was considered an allowed digit because it WASN'T a termination digit.
I would recommend making * a termination digit in addition to #. This should be harmless, because either the caller isn't going to press *, or they are, and if they didn't successfully enter what you asked them to, you prompt them again anyway. They shouldn't be surprised that their input was invalid if they used an invalid key during the input. Alternatively, leave the system as it is, and have data validation sort things out. (If you are gathering a number from the caller, for example, use a Compare to see if the string collected is a valid number. If it is a user id or account number, have a comparison against the stored value, etc)
|