VoiceGuide IVR Software Main Page
Jump to content

Detecting Existing Variavble

Recommended Posts

In our script we need to detect RV exists no matter which value.

 

For example to recognize dialer scenario we need to detect existing $RV[OutDial_GUID] in terminating script to make additional steps.

 

How to do this?

Share this post


Link to post

Evaluate Expression module is one way. Evaluate this expression:

 

"$RV[OutDial_GUID]"

 

True/Success path will be taken if value is non-empty

False/Fail path will be taken if value is empty

 

 

You can use it in a VBScript module as well:

 

If "$RV[OutDial_GUID]" = "" Then

...

Else

...

End If

 

etc..

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×