VoiceGuide IVR Software Main Page
Jump to content

Cumulative Effects In Vbscript

Recommended Posts

The following vbscript get a single character from ASCII but does not add to cumulative effect in the variable cumulativeid. Can you help me please? I want that the variable cumulativeid stores cumulative values made available through module Get Numbers for 20 cycles. Please help URGENTLY.

 

 

dim emaildig,cumulativeid

set vg = CreateObject("VoiceGuide.CommandLink")

vg.RvSet $RV_LINEID, "emaildig", chr($RV[Get Numbers])

cumulativeid=cumulativeid&emaildig

Share this post


Link to post

Sounds like you want to append some data to an existing RV.

Try something like this:

 

set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore ", sCumulativeStore)

Share this post


Link to post

Dear sir

 

thanks for the reply. The script helped to some extent.

 

But actually what I wanted the script to do is to create a string of characters from each entry of number made to the Get Numbers module. That means when the call starts the user enters a number say 65 then the same should be stored in Cumulativestore as character of that ASCII value, which in this case is "A". When the Get Numbers module runs again and if the caller enters 65 then the concatenated value of Cumulativestore will be AB and not B alone.

 

I am trying for such a cumulative addition.Any advice will be greatly appreciated.

 

thanks.

Share this post


Link to post

The VBScript as provided will do cumulative addition... have you tried using it?

 

Please post a script demonstrating your problem and a trace capturing a call made into the script. (.ZIPed)

Share this post


Link to post

Dear sir

I have tied your suggestions. Here is the log.

 

063635.12 0 tapi callstate start

063635.12 0 tapi callstate OFFERING 65604 0 4

063635.14 0 rv clear

063635.14 0 Answer the call at 1/1/2006 6:36:35 AM

063635.14 0 lineAnswer(65604) => 65587

063635.17 0 ring 1

063635.17 0 tapi callstate start

063635.19 0 tapi callstate ACCEPTED 65604 0 0

063635.22 0 tapi Reply (LineEvReply) ok 65587 0

063635.25 0 tapi callstate start

063635.25 0 tapi callstate CONNECTED 65604 0 0

063635.25 0 callstate CONNECTED 65604,0,0

063635.26 0 WorkingModeTAPI@Connected=

063635.26 0 WorkingModeScript@Connected=

063635.28 0 Inband detection not enabled

063635.28 0 StartLoadedVgs at 1/1/2006 6:36:35 AM, script interpretor VgMulti v5.2.5012 0

063635.28 0 rv ns add [scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}

063635.28 0 rv ns add [scriptPath]{D:\Program Files\VoiceGuide\Scripts}

063635.30 0 rv lg add [$RV_STARTTIME]{1/1/2006 6:36:35 AM}

063635.30 0 rv lg add [$RV_DEVICEID]{0}

063635.31 0 rv lg add [$RV_CIDNAME]{}

063635.31 0 rv ns add [PathApp]{D:\Program Files\VoiceGuide\}

063635.31 0 rv lg add [$RV_CIDNUMBER]{}

063635.33 0 rv lg add [$RV_DNIS]{}

063635.33 0 rv lg add [DNIS]{}

063635.33 0 timer clear

063635.34 0 state [Get Numbers] Number Input

063635.34 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

063635.34 0 play set playid=517921

063635.45 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

063635.47 0 timer clear

063635.76 0 dial start any summary:|0:hc>0|

063637.73 0 play end current play (playid=517921)

063637.75 0 ScriptEventCode 8001 iLineState=1300

063637.75 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

063637.76 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

063637.76 0 timer set 5 EV_TIMEOUT_REPLAYMSG

063637.87 0 dtmf 6 (65604,54,2)

063637.89 0 ScriptEventCode 54 iLineState=1301

063637.89 0 LsGetNbrsRxDigits 6

063637.89 0 state [Get Numbers] Number Input 6

063637.90 0 path {6} not found

063637.90 0 timer set 6 EV_TIMEOUT_ENTERDATA

063638.51 0 dtmf 5 (65604,53,2)

063638.51 0 ScriptEventCode 53 iLineState=1301

063638.53 0 LsGetNbrsRxDigits 5

063638.53 0 state [Get Numbers] Number Input 65

063638.55 0 rv lg add [Get Numbers]{65}

063638.55 0 rv ns add [Get Numbers_PathTaken]{65}

063638.56 0 timer clear

063638.58 0 state [Run VB Script 1] Running VB Script...

063638.59 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore ", sCumulativeStore

]

063638.59 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/1/2006 6:36:35 AM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}

063638.62 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_1_0101063638.vbs" //I] copy of script in: vbs_0_1_0101063638.vbs

063638.65 0 VBScript Run continuing...

063638.69 0 timer clear

063638.69 0 state [Get Numbers] Number Input

063638.70 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

063638.72 0 play set playid=521296

063638.84 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

063638.86 0 timer clear

063638.92 0 cl RvSet CumulativeStore , A

063638.94 0 rv lg add [CumulativeStore ]{A}

063641.11 0 play end current play (playid=521296)

063641.12 0 ScriptEventCode 8001 iLineState=1300

063641.14 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

063641.15 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

063641.15 0 timer set 5 EV_TIMEOUT_REPLAYMSG

063641.19 0 dtmf 6 (65604,54,2)

063641.19 0 ScriptEventCode 54 iLineState=1301

063641.20 0 LsGetNbrsRxDigits 6

063641.22 0 state [Get Numbers] Number Input 6

063641.23 0 path {6} not found

063641.25 0 timer set 6 EV_TIMEOUT_ENTERDATA

063641.58 0 dtmf 6 (65604,54,2)

063641.59 0 ScriptEventCode 54 iLineState=1301

063641.61 0 LsGetNbrsRxDigits 6

063641.61 0 state [Get Numbers] Number Input 66

063641.62 0 rv lg add [Get Numbers]{66}

063641.64 0 rv ns add [Get Numbers_PathTaken]{66}

063641.65 0 timer clear

063641.67 0 state [Run VB Script 1] Running VB Script...

063641.67 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore ", sCumulativeStore

]

063641.69 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/1/2006 6:36:35 AM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore ]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}

063641.70 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_2_0101063641.vbs" //I] copy of script in: vbs_0_2_0101063641.vbs

063641.75 0 VBScript Run continuing...

063641.76 0 timer clear

063641.78 0 state [Get Numbers] Number Input

063641.80 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

063641.80 0 play set playid=524375

063641.94 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

063641.95 0 timer clear

063642.01 0 cl RvSet CumulativeStore , B

063642.03 0 rv lg add [CumulativeStore ]{B}

063644.22 0 play end current play (playid=524375)

063644.22 0 ScriptEventCode 8001 iLineState=1300

063644.23 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

063644.25 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

063644.26 0 timer set 5 EV_TIMEOUT_REPLAYMSG

063644.30 0 dtmf 6 (65604,54,2)

063644.31 0 ScriptEventCode 54 iLineState=1301

063644.33 0 LsGetNbrsRxDigits 6

063644.33 0 state [Get Numbers] Number Input 6

063644.34 0 path {6} not found

063644.36 0 timer set 6 EV_TIMEOUT_ENTERDATA

063644.92 0 dtmf 7 (65604,55,2)

063644.94 0 ScriptEventCode 55 iLineState=1301

063644.95 0 LsGetNbrsRxDigits 7

063644.95 0 state [Get Numbers] Number Input 67

063644.97 0 rv lg add [Get Numbers]{67}

063644.98 0 rv ns add [Get Numbers_PathTaken]{67}

063644.00 0 timer clear

063645.01 0 state [Run VB Script 1] Running VB Script...

063645.01 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore ", sCumulativeStore

]

063645.03 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/1/2006 6:36:35 AM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore ]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore ]{B}[Get Numbers]{67}[Get Numbers_PathTaken]{67}

063645.05 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_3_0101063645.vbs" //I] copy of script in: vbs_0_3_0101063645.vbs

063645.09 0 VBScript Run continuing...

063645.11 0 timer clear

063645.12 0 state [Get Numbers] Number Input

063645.14 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

063645.14 0 play set playid=527718

063645.28 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

063645.30 0 timer clear

063645.36 0 cl RvSet CumulativeStore , C

063645.37 0 rv lg add [CumulativeStore ]{C}

063647.56 0 play end current play (playid=527718)

063647.58 0 ScriptEventCode 8001 iLineState=1300

063647.59 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

063647.59 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

063647.61 0 timer set 5 EV_TIMEOUT_REPLAYMSG

063647.62 0 dtmf 6 (65604,54,2)

063647.64 0 ScriptEventCode 54 iLineState=1301

063647.65 0 LsGetNbrsRxDigits 6

063647.67 0 state [Get Numbers] Number Input 6

063647.69 0 path {6} not found

063647.69 0 timer set 6 EV_TIMEOUT_ENTERDATA

063648.14 0 dtmf 8 (65604,56,2)

063648.15 0 ScriptEventCode 56 iLineState=1301

063648.17 0 LsGetNbrsRxDigits 8

063648.19 0 state [Get Numbers] Number Input 68

063648.20 0 rv lg add [Get Numbers]{68}

063648.20 0 rv ns add [Get Numbers_PathTaken]{68}

063648.22 0 timer clear

063648.23 0 state [Run VB Script 1] Running VB Script...

063648.25 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore ", sCumulativeStore

]

063648.26 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/1/2006 6:36:35 AM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore ]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore ]{B}[Get Numbers]{67}[Get Numbers_PathTaken]{67}[CumulativeStore ]{C}[Get Numbers]{68}[Get Numbers_PathTaken]{68}

063648.28 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_4_0101063648.vbs" //I] copy of script in: vbs_0_4_0101063648.vbs

063648.33 0 VBScript Run continuing...

063648.34 0 timer clear

063648.36 0 state [Get Numbers] Number Input

063648.37 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

063648.37 0 play set playid=530953

063648.51 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

063648.53 0 timer clear

063648.58 0 cl RvSet CumulativeStore , D

063648.59 0 rv lg add [CumulativeStore ]{D}

063650.80 0 play end current play (playid=530953)

063650.80 0 ScriptEventCode 8001 iLineState=1300

063650.81 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

063650.83 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

063650.84 0 timer set 5 EV_TIMEOUT_REPLAYMSG

063650.00 0 dtmf * (65604,42,2)

063650.00 0 ScriptEventCode 42 iLineState=1301

063651.01 0 LsGetNbrsRxDigits *

063651.03 0 rv lg add [Get Numbers]{}

063651.05 0 rv ns add [Get Numbers_PathTaken]{*}

063651.06 0 timer clear

063651.06 0 state [Play 1] Playing

063651.08 0 state [Play 1] Playing (D:\VoiceGuide\AmitabhaSoundFiles\THANKS.WAV)

063651.09 0 play set playid=533671

063651.22 0 PlaySoundStart ok [D:\VoiceGuide\AmitabhaSoundFiles\THANKS.WAV]

063651.23 0 timer clear

063651.23 0 RunModule PLAY end

063654.42 0 tapi callstate start

063654.44 0 tapi callstate DISCONNECTED 65604 1 0

063654.44 0 ScriptEventCode 9250 iLineState=1100

063654.45 0 LsPlayMsg EV_REMOTEPARTY_DISCONNECT

063654.47 0 rv lg add [Hangup Time]{1/1/2006 6:36:54 AM}

063654.48 0 state Hanging up call...

063654.50 0 RecSoundStop ok

063655.36 0 PlaySoundStop err=0

063655.37 0 timer set 2 EV_TIMEOUT_WAITFORIDLEAFTERLINEDROP

063655.39 0 fnHangupCall end

063655.61 0 tapi callstate start

063655.62 0 tapi callstate IDLE 65604 0 0

063655.64 0 WorkingMode@Idle=

063655.64 0 timer clear

063655.67 0 timer set 1 EV_TIMEOUT_TIMETOREINITLINE

063655.69 0 tapi Reply (LineEvReply) ok 65570 0

063656.69 0 timer fired EV_TIMEOUT_TIMETOREINITLINE

063656.69 0 ScriptEventCode 9008 iLineState=900

063656.70 0 LsAwaitingCalls EV_TIMEOUT_TIMETOREINITLINE

063656.72 0 ReinitTelephony due to IDLE

063656.73 0 tapic lineDeallocateCall(MainCall:65604) 0

063657.20 0 lineOpen(0)=>

063657.20 0 state Waiting for a call...

063657.22 0 LineHandle=65553

063657.23 0 amchk set AMdet=False in Reinit@idle

063657.25 0 timer set 3 EV_TIMEOUT_ATERIDLE_ALLOWOUT

063657.58 0 dial start any summary:|0:rdy=0|

063700.55 0 timer fired EV_TIMEOUT_ATERIDLE_ALLOWOUT

063700.55 0 ScriptEventCode 9013 iLineState=900

063700.58 0 dial start any summary:|0:idx=0|

063717.76 0 sys cleanup Start

063717.78 0 sys cleanup End

 

I am not able to see that the variable cumulativestore is containing ABCD. Instead it seems to contain each one alphabet saperately.Please guide me on how to get the string ABCD stored in Cumulativestore and make it available by a result variable ahead.

Scripts.rar

Share this post


Link to post

Looks like there was a small typo in the script we provided. The script below should work:

 

set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore", sCumulativeStore)

 

See how in the previous provided script there was a space between the end of CumulativeStore and the quote character. This resulted in the variable $RV[CumulativeStore ] being set (again note the space at end), which is different to $RV[CumulativeStore] which has no space at the end.

Share this post


Link to post

thanks. It works well. But when I used Cumulativesotore@rediffmail.com in the send email module it gave an error that mail not configured. Can I directly use the value as character string if ahead in some module I use Cumulativesotore? Please advice. Thanks for the help.

Share this post


Link to post
when I used @rediffmail.comin the send email module it gave an error that mail not configured.

Do you have a trace?

I suspect you should be using:

 

$RV[CumulativeStore]@rediffmail.com

Share this post


Link to post

Its working now.Thanks a lot again. But send email is failing. Actually its using correct email ID but is not queing up the emails in Micorsoft Outlook. I want it to be queued up so that all are sent in night. I have configured MSOutlook as my default mail client. What should be done now?

Share this post


Link to post

Please help me understand this log please. The database contains email ids such as yahoo.com, rediffmail.com and he email is not sent to this id.

 

63713.16 0 tapi callstate start

163713.16 0 tapi callstate OFFERING 65740 0 4

163713.16 0 rv clear

163713.17 0 Answer the call at 1/4/2006 4:37:13 PM

163713.19 0 lineAnswer(65740) => 65723

163713.19 0 ring 1

163713.20 0 tapi callstate start

163713.20 0 tapi callstate ACCEPTED 65740 0 0

163713.20 0 dial start any summary:|0:hc>0|

163713.25 0 tapi Reply (LineEvReply) ok 65723 0

163713.27 0 tapi callstate start

163713.27 0 tapi callstate CONNECTED 65740 0 0

163713.28 0 callstate CONNECTED 65740,0,0

163713.28 0 WorkingModeTAPI@Connected=

163713.28 0 WorkingModeScript@Connected=

163713.28 0 Inband detection not enabled

163713.30 0 StartLoadedVgs at 1/4/2006 4:37:13 PM, script interpretor VgMulti v5.2.5012 0

163713.30 0 rv ns add [scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}

163713.30 0 rv ns add [scriptPath]{D:\Program Files\VoiceGuide\Scripts}

163713.31 0 rv lg add [$RV_STARTTIME]{1/4/2006 4:37:13 PM}

163713.31 0 rv lg add [$RV_DEVICEID]{0}

163713.31 0 rv lg add [$RV_CIDNAME]{}

163713.33 0 rv ns add [PathApp]{D:\Program Files\VoiceGuide\}

163713.33 0 rv lg add [$RV_CIDNUMBER]{}

163713.33 0 rv lg add [$RV_DNIS]{}

163713.33 0 rv lg add [DNIS]{}

163713.34 0 timer clear

163713.34 0 state [Get Numbers] Number Input

163713.36 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

163713.36 0 play set playid=203921

163713.50 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

163713.52 0 timer clear

163715.78 0 play end current play (playid=203921)

163715.80 0 ScriptEventCode 8001 iLineState=1300

163715.80 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

163715.81 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

163715.81 0 timer set 5 EV_TIMEOUT_REPLAYMSG

163715.95 0 dtmf 6 (65740,54,2)

163715.95 0 ScriptEventCode 54 iLineState=1301

163715.95 0 LsGetNbrsRxDigits 6

163715.95 0 state [Get Numbers] Number Input 6

163715.97 0 path {6} not found

163715.97 0 timer set 6 EV_TIMEOUT_ENTERDATA

163716.28 0 dtmf 5 (65740,53,2)

163716.28 0 ScriptEventCode 53 iLineState=1301

163716.28 0 LsGetNbrsRxDigits 5

163716.28 0 state [Get Numbers] Number Input 65

163716.31 0 rv lg add [Get Numbers]{65}

163716.31 0 rv ns add [Get Numbers_PathTaken]{65}

163716.33 0 timer clear

163716.34 0 state [Run VB Script 1] Running VB Script...

163716.36 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore", sCumulativeStore

 

]

163716.36 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}

163716.41 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_1_0104163716.vbs" //I] copy of script in: vbs_0_1_0104163716.vbs

163716.89 0 VBScript Run continuing...

163716.91 0 timer clear

163716.91 0 state [Get Numbers] Number Input

163716.92 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

163716.94 0 play set playid=207500

163717.09 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

163717.09 0 timer clear

163717.19 0 cl RvSet CumulativeStore, A

163717.20 0 rv lg add [CumulativeStore]{A}

163719.36 0 play end current play (playid=207500)

163719.38 0 ScriptEventCode 8001 iLineState=1300

163719.39 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

163719.39 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

163719.41 0 timer set 5 EV_TIMEOUT_REPLAYMSG

163719.48 0 dtmf 6 (65740,54,2)

163719.48 0 ScriptEventCode 54 iLineState=1301

163719.50 0 LsGetNbrsRxDigits 6

163719.52 0 state [Get Numbers] Number Input 6

163719.53 0 path {6} not found

163719.55 0 timer set 6 EV_TIMEOUT_ENTERDATA

163719.94 0 dtmf 6 (65740,54,2)

163719.94 0 ScriptEventCode 54 iLineState=1301

163719.95 0 LsGetNbrsRxDigits 6

163719.97 0 state [Get Numbers] Number Input 66

163719.98 0 rv lg add [Get Numbers]{66}

163719.98 0 rv ns add [Get Numbers_PathTaken]{66}

163719.00 0 timer clear

163720.02 0 state [Run VB Script 1] Running VB Script...

163720.03 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore", sCumulativeStore

 

]

163720.05 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}

163720.06 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_2_0104163720.vbs" //I] copy of script in: vbs_0_2_0104163720.vbs

163720.11 0 VBScript Run continuing...

163720.13 0 timer clear

163720.13 0 state [Get Numbers] Number Input

163720.14 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

163720.16 0 play set playid=210718

163720.31 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

163720.33 0 timer clear

163720.36 0 dtmf 6 (65740,54,2)

163720.38 0 ScriptEventCode 54 iLineState=1300

163720.39 0 LsGetNbrsPlayWelcMsg 6

163721.13 0 PlaySoundStop err=0

163721.13 0 state [Get Numbers] Number Input 6

163721.14 0 path {6} not found

163721.16 0 timer set 6 EV_TIMEOUT_ENTERDATA

163721.20 0 cl RvSet CumulativeStore, AB

163721.22 0 rv lg add [CumulativeStore]{AB}

163722.95 0 dtmf 6 (65740,54,2)

163722.97 0 ScriptEventCode 54 iLineState=1301

163722.97 0 LsGetNbrsRxDigits 6

163722.98 0 state [Get Numbers] Number Input 66

163722.00 0 rv lg add [Get Numbers]{66}

163723.02 0 rv ns add [Get Numbers_PathTaken]{66}

163723.03 0 timer clear

163723.03 0 state [Run VB Script 1] Running VB Script...

163723.05 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore", sCumulativeStore

 

]

163723.06 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{AB}[Get Numbers]{66}[Get Numbers_PathTaken]{66}

163723.08 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_3_0104163723.vbs" //I] copy of script in: vbs_0_3_0104163723.vbs

163723.14 0 VBScript Run continuing...

163723.17 0 timer clear

163723.17 0 state [Get Numbers] Number Input

163723.19 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

163723.20 0 play set playid=213765

163723.34 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

163723.36 0 timer clear

163723.48 0 cl RvSet CumulativeStore, ABB

163723.50 0 rv lg add [CumulativeStore]{ABB}

163725.63 0 play end current play (playid=213765)

163725.64 0 ScriptEventCode 8001 iLineState=1300

163725.66 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

163725.67 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

163725.67 0 timer set 5 EV_TIMEOUT_REPLAYMSG

163726.89 0 dtmf 9 (65740,57,2)

163726.91 0 ScriptEventCode 57 iLineState=1301

163726.92 0 LsGetNbrsRxDigits 9

163726.94 0 state [Get Numbers] Number Input 9

163726.94 0 path {9} not found

163726.95 0 timer set 6 EV_TIMEOUT_ENTERDATA

163727.19 0 dtmf 9 (65740,57,2)

163727.20 0 ScriptEventCode 57 iLineState=1301

163727.22 0 LsGetNbrsRxDigits 9

163727.23 0 state [Get Numbers] Number Input 99

163727.23 0 rv lg add [Get Numbers]{99}

163727.25 0 rv ns add [Get Numbers_PathTaken]{99}

163727.27 0 timer clear

163727.28 0 state [Run VB Script 1] Running VB Script...

163727.30 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore", sCumulativeStore

 

]

163727.31 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{AB}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{ABB}[Get Numbers]{99}[Get Numbers_PathTaken]{99}

163727.33 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_4_0104163727.vbs" //I] copy of script in: vbs_0_4_0104163727.vbs

163727.38 0 VBScript Run continuing...

163727.39 0 timer clear

163727.41 0 state [Get Numbers] Number Input

163727.41 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

163727.42 0 play set playid=217984

163727.58 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

163727.59 0 timer clear

163727.66 0 cl RvSet CumulativeStore, ABBc

163727.66 0 rv lg add [CumulativeStore]{ABBc}

163729.86 0 play end current play (playid=217984)

163729.86 0 ScriptEventCode 8001 iLineState=1300

163729.88 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

163729.89 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

163729.91 0 timer set 5 EV_TIMEOUT_REPLAYMSG

163730.31 0 dtmf 9 (65740,57,2)

163730.31 0 ScriptEventCode 57 iLineState=1301

163730.33 0 LsGetNbrsRxDigits 9

163730.33 0 state [Get Numbers] Number Input 9

163730.34 0 path {9} not found

163730.36 0 timer set 6 EV_TIMEOUT_ENTERDATA

163730.77 0 dtmf 5 (65740,53,2)

163730.77 0 ScriptEventCode 53 iLineState=1301

163730.78 0 LsGetNbrsRxDigits 5

163730.78 0 state [Get Numbers] Number Input 95

163730.80 0 rv lg add [Get Numbers]{95}

163730.81 0 rv ns add [Get Numbers_PathTaken]{95}

163730.83 0 timer clear

163730.83 0 state [Run VB Script 1] Running VB Script...

163730.84 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore", sCumulativeStore

 

]

163730.86 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{AB}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{ABB}[Get Numbers]{99}[Get Numbers_PathTaken]{99}[CumulativeStore]{ABBc}[Get Numbers]{95}[Get Numbers_PathTaken]{95}

163730.88 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_5_0104163730.vbs" //I] copy of script in: vbs_0_5_0104163730.vbs

163730.92 0 VBScript Run continuing...

163730.94 0 timer clear

163730.95 0 state [Get Numbers] Number Input

163730.97 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

163730.97 0 play set playid=221531

163731.02 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

163731.03 0 timer clear

163731.09 0 cl RvSet CumulativeStore, ABBc_

163731.09 0 rv lg add [CumulativeStore]{ABBc_}

163733.30 0 play end current play (playid=221531)

163733.31 0 ScriptEventCode 8001 iLineState=1300

163733.33 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

163733.33 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

163733.34 0 timer set 5 EV_TIMEOUT_REPLAYMSG

163733.67 0 dtmf 1 (65740,49,2)

163733.67 0 ScriptEventCode 49 iLineState=1301

163733.69 0 LsGetNbrsRxDigits 1

163733.70 0 state [Get Numbers] Number Input 1

163733.72 0 path {1} not found

163733.72 0 timer set 6 EV_TIMEOUT_ENTERDATA

163734.23 0 dtmf 0 (65740,48,2)

163734.25 0 ScriptEventCode 48 iLineState=1301

163734.25 0 LsGetNbrsRxDigits 0

163734.27 0 state [Get Numbers] Number Input 10

163734.28 0 path {10} not found

163734.28 0 timer set 6 EV_TIMEOUT_ENTERDATA

163734.00 0 dtmf 6 (65740,54,2)

163735.02 0 ScriptEventCode 54 iLineState=1301

163735.02 0 LsGetNbrsRxDigits 6

163735.03 0 state [Get Numbers] Number Input 106

163735.05 0 rv lg add [Get Numbers]{106}

163735.06 0 rv ns add [Get Numbers_PathTaken]{106}

163735.06 0 timer clear

163735.08 0 state [Run VB Script 1] Running VB Script...

163735.09 0 rv replace start: [set vg = CreateObject("VoiceGuide.CommandLink")

sCumulativeStore = "$RV[CumulativeStore]"

sCumulativeStore = sCumulativeStore & chr($RV[Get Numbers])

vg.RvSet $RV_LINEID, "CumulativeStore", sCumulativeStore

 

]

163735.09 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{AB}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{ABB}[Get Numbers]{99}[Get Numbers_PathTaken]{99}[CumulativeStore]{ABBc}[Get Numbers]{95}[Get Numbers_PathTaken]{95}[CumulativeStore]{ABBc_}[Get Numbers]{106}[Get Numbers_PathTaken]{106}

163735.11 0 eng run vbs [wscript "D:\Program Files\VoiceGuide\temp\vbs_0_6_0104163735.vbs" //I] copy of script in: vbs_0_6_0104163735.vbs

163735.16 0 VBScript Run continuing...

163735.17 0 timer clear

163735.19 0 state [Get Numbers] Number Input

163735.20 0 state [Get Numbers] Playing (D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav)

163735.20 0 play set playid=225765

163735.25 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\VmbPinEnterNew.wav]

163735.27 0 timer clear

163735.33 0 cl RvSet CumulativeStore, ABBc_j

163735.33 0 rv lg add [CumulativeStore]{ABBc_j}

163737.55 0 play end current play (playid=225765)

163737.55 0 ScriptEventCode 8001 iLineState=1300

163737.56 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

163737.58 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

163737.58 0 timer set 5 EV_TIMEOUT_REPLAYMSG

163738.45 0 dtmf * (65740,42,2)

163738.45 0 ScriptEventCode 42 iLineState=1301

163738.47 0 LsGetNbrsRxDigits *

163738.47 0 rv lg add [Get Numbers]{}

163738.48 0 rv ns add [Get Numbers_PathTaken]{*}

163738.50 0 timer clear

163738.52 0 state [Get email Number] Number Input

163738.52 0 state [Get email Number] Playing (D:\Program Files\VoiceGuide\system\voice\thousand.wav)

163738.53 0 play set playid=229093

163738.59 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\thousand.wav]

163738.59 0 timer clear

163739.52 0 play end current play (playid=229093)

163739.53 0 ScriptEventCode 8001 iLineState=1300

163739.53 0 LsGetNbrsPlayWelcMsg EV_PLAY_FINISHED

163739.55 0 eng set timer EV_TIMEOUT_REPLAYMSG time=5

163739.56 0 timer set 5 EV_TIMEOUT_REPLAYMSG

163740.22 0 dtmf 2 (65740,50,2)

163740.22 0 ScriptEventCode 50 iLineState=1301

163740.23 0 LsGetNbrsRxDigits 2

163740.23 0 state [Get email Number] Number Input 2

163740.25 0 path {2} not found

163740.27 0 timer set 6 EV_TIMEOUT_ENTERDATA

163740.28 0 timer clear

163740.28 0 rv lg add [Get email Number]{2}

163740.30 0 path {2} not found

163740.31 0 rv ns add [Get email Number_PathTaken]{success}

163740.31 0 timer clear

163740.33 0 state [Database Query] DB Query

163740.34 0 db Jet mode used (To use ODBC mode specify ODBC Connect string)

163740.50 0 rv replace start: [select emailid from table1 where accountnumber=$RV[Get email Number]]

163740.52 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{AB}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{ABB}[Get Numbers]{99}[Get Numbers_PathTaken]{99}[CumulativeStore]{ABBc}[Get Numbers]{95}[Get Numbers_PathTaken]{95}[CumulativeStore]{ABBc_}[Get Numbers]{106}[Get Numbers_PathTaken]{106}[CumulativeStore]{ABBc_j}[Get Numbers]{}[Get Numbers_PathTaken]{*}[Get email Number]{2}[Get email Number_PathTaken]{success}

163740.52 0 rv replace end: [select emailid from table1 where accountnumber=2]

163740.55 0 db About to execute a Retrieve type operation [select emailid from table1 where accountnumber=2]

163740.56 0 db [Database Query] row count=1

163740.56 0 rv lg add [Database Query_RowCount]{1}

163740.58 0 db get RecordsetGetRowsMax

163740.59 0 db get 999 records. (row count=1)

163740.61 0 db update RVs start

163740.61 0 db update RVs cols=1 rows=1

163740.63 0 db test vRetData(0, 0)=yahoo.com

163740.64 0 db test CStr(vRetData(0, 0))=yahoo.com

163740.64 0 db about to close dbDbqDatabase

163740.66 0 db going down path [True]

163740.67 0 timer clear

163740.69 0 state [Record] Recording

163740.69 0 play set playid=231250

163740.77 0 PlaySoundStart ok [D:\Program Files\VoiceGuide\system\voice\beep1.wav]

163740.77 0 timer clear

163741.13 0 play end current play (playid=231250)

163741.13 0 ScriptEventCode 8001 iLineState=1200

163741.14 0 LsRecPlayBeep EV_PLAY_FINISHED

163741.16 0 rv lg add [Record]{D:\Program Files\VoiceGuide\Scripts\voice}

163741.20 0 RecSoundStart file[D:\Program Files\VoiceGuide\Scripts\voice] ok

163741.22 0 eng RecSoundStart after beep [D:\Program Files\VoiceGuide\Scripts\voice]

163741.22 0 timer set 180 EV_TIMEOUT_GOTOMODULE

163745.73 0 sys cleanup Start

163745.78 0 sys cleanup End

163751.39 0 dtmf # (65740,35,2)

163751.39 0 ScriptEventCode 35 iLineState=1201

163751.41 0 LsRecRecording #

163751.42 0 RecSoundStopTruncBytes ok

163751.44 0 rec length RV: Record_RecLen100ms = 101

163751.44 0 rv lg add [Record_RecLen100ms]{101}

163751.45 0 rv lg add [Record_EndRecCause]{#}

163751.47 0 ScriptEventCode 8003 iLineState=5900

163751.48 0 timer clear

163751.48 0 state [send Email 1] Send Email

163751.50 0 rv replace start: [$RV[CumulativeStore]@$RV[Database Query]]

163751.52 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{AB}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{ABB}[Get Numbers]{99}[Get Numbers_PathTaken]{99}[CumulativeStore]{ABBc}[Get Numbers]{95}[Get Numbers_PathTaken]{95}[CumulativeStore]{ABBc_}[Get Numbers]{106}[Get Numbers_PathTaken]{106}[CumulativeStore]{ABBc_j}[Get Numbers]{}[Get Numbers_PathTaken]{*}[Get email Number]{2}[Get email Number_PathTaken]{success}[Database Query_RowCount]{1}[Database Query_1_1]{yahoo.com}[Record]{D:\Program Files\VoiceGuide\Scripts\voice}[Record_RecLen100ms]{101}[Record_EndRecCause]{#}

163751.53 0 rv replace end: [ABBc_j@]

163751.55 0 rv replace start: [$RV[Record]]

163751.55 0 rv ns [PathSysVoice]{}[PathApp]{D:\Program Files\VoiceGuide\}[PathDataVm]{D:\Program Files\VoiceGuide\data\}[PathVgSys]{D:\Program Files\VoiceGuide\system\}[scriptsPath]{D:\Program Files\VoiceGuide\Scripts\}[scriptPath]{D:\Program Files\VoiceGuide\Scripts}[$RV_STARTTIME]{1/4/2006 4:37:13 PM}[$RV_DEVICEID]{0}[$RV_CIDNAME]{}[PathApp]{D:\Program Files\VoiceGuide\}[$RV_CIDNUMBER]{}[$RV_DNIS]{}[DNIS]{}[Get Numbers]{65}[Get Numbers_PathTaken]{65}[CumulativeStore]{A}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{AB}[Get Numbers]{66}[Get Numbers_PathTaken]{66}[CumulativeStore]{ABB}[Get Numbers]{99}[Get Numbers_PathTaken]{99}[CumulativeStore]{ABBc}[Get Numbers]{95}[Get Numbers_PathTaken]{95}[CumulativeStore]{ABBc_}[Get Numbers]{106}[Get Numbers_PathTaken]{106}[CumulativeStore]{ABBc_j}[Get Numbers]{}[Get Numbers_PathTaken]{*}[Get email Number]{2}[Get email Number_PathTaken]{success}[Database Query_RowCount]{1}[Database Query_1_1]{yahoo.com}[Record]{D:\Program Files\VoiceGuide\Scripts\voice}[Record_RecLen100ms]{101}[Record_EndRecCause]{#}

163751.56 0 rv replace end: [D:\Program Files\VoiceGuide\Scripts\voice]

163751.58 0 rv lg add [send Email 1]{ABBc_j@}

163751.59 0 rv lg add [send Email 1_Subject]{jaibhim}

163751.59 0 rv lg add [send Email 1_Message]{self test}

163751.61 0 rv lg add [send Email 1_Attachment]{D:\Program Files\VoiceGuide\Scripts\voice}

163751.63 0 rv lg add [send Email 1_Cc]{}

163751.64 0 rv lg add [send Email 1_Bcc]{}

163751.64 0 email que to: ABBc_j@

163751.67 0 sql INSERT INTO MsgQue (ToAddress, ToName, ReturnAddress, ReturnName, CcAddress, CcName, BccAddress, BccName, ReplyAddress, MsgSubject, MsgMessage, MsgAttachment, MsgAttachmentDeleteAfterSend, gw1_SmtpServ, gw1_UseAuthentication, gw1_UsePopAuthentication, gw1_AuthUserName, gw1_AuthUserPassword, gw1_POP3Host, gw1_SMTPPort, gw2_SmtpServ, gw2_UseAuthentication, gw2_UsePopAuthentication, gw2_AuthUserName, gw2_AuthUserPassword, gw2_POP3Host, gw2_SMTPPort, SendTime, SendRetriesLeft, SendDelayBetweenRetries) VALUES ('ABBc_j@', 'ABBc_j@', '', '', '', '', '', '', '', 'jaibhim', 'self test', 'D:\Program Files\VoiceGuide\Scripts\voice', 0, 'MAPI', 0, 0, '', '', '', 25, 'smma.sancharnet.in', 1, 0, 'civil567', 'amitabha', '', 25, 0, 3, 10)

163751.72 0 rv lg add [send Email 1_SendResult]{OK}

163752.06 0 timer clear

163752.06 0 rv lg add [Hangup Time]{1/4/2006 4:37:52 PM}

163752.08 0 state Hanging up call... [Hangup Module]

163752.09 0 RecSoundStop ok

163752.11 0 PlaySoundStop err=0

163752.11 0 timer set 2 EV_TIMEOUT_WAITFORIDLEAFTERLINEDROP

163752.14 0 fnHangupCall end

163752.36 0 tapi callstate start

163752.38 0 tapi callstate DISCONNECTED 65740 1 0

163752.39 0 ScriptEventCode 9250 iLineState=900

163752.39 0 LsAwaitingCalls EV_REMOTEPARTY_DISCONNECT

163752.41 0 rv lg add [Hangup Time]{1/4/2006 4:37:52 PM}

163752.42 0 state Hanging up call...

163752.42 0 RecSoundStop ok

163752.44 0 PlaySoundStop err=0

163752.45 0 timer set 2 EV_TIMEOUT_WAITFORIDLEAFTERLINEDROP

163752.47 0 fnHangupCall end

163752.47 0 tapi callstate start

163752.48 0 tapi callstate IDLE 65740 0 0

163752.52 0 WorkingMode@Idle=

163752.53 0 timer clear

163752.61 0 timer set 1 EV_TIMEOUT_TIMETOREINITLINE

163752.63 0 tapi Reply (LineEvReply) ok 65706 0

163752.64 0 tapi Reply (LineEvReply) ok 65689 0

163753.64 0 timer fired EV_TIMEOUT_TIMETOREINITLINE

163753.64 0 ScriptEventCode 9008 iLineState=900

163753.66 0 LsAwaitingCalls EV_TIMEOUT_TIMETOREINITLINE

163753.67 0 ReinitTelephony due to IDLE

163753.69 0 tapic lineDeallocateCall(MainCall:65740) 0

163753.92 0 lineOpen(0)=>

163753.94 0 state Waiting for a call...

163754.09 0 LineHandle=65672

163754.11 0 amchk set AMdet=False in Reinit@idle

163754.13 0 timer set 3 EV_TIMEOUT_ATERIDLE_ALLOWOUT

163754.14 0 dial start any summary:|0:rdy=0|

163757.44 0 timer fired EV_TIMEOUT_ATERIDLE_ALLOWOUT

163757.44 0 ScriptEventCode 9013 iLineState=900

163758.14 0 dial start any summary:|0:idx=0|

 

 

kindly help me. please

bye

Scripts.rar

Share this post


Link to post

This trace shows emails are inserted to the email database to be emailed.

 

If they do not get emailed then you should look at the MMDDes.txt log

 

BTW. Please do not quote your logs in posts - .ZIP them up and include them as attachments.

Share this post


Link to post

Dear sir

please find the attachemnts of log and script belo. The Say Number module after saying number should transfer control to Record module as I have provided both the succes and fail path from Say Number to Record module. Besides is the send email module correctly written? Thanking you in anticipation.

log.rar

Share this post


Link to post

The Say Number module expects a DTMF response for caller - just like a 'Play' module. It does not evaluate anything so 'Success' and 'Fail' paths are no used in this module (just like they are not used in a 'Play' module)

 

If you want to move onto another module immediately after the playing of sound files is finished then use the 'Timeout 0' path.

 

Also - this question is not related to topic "Cumulative Effects In Vbscript" - so it should really be in a separate thread.... as should your email related question...

 

Also, please .ZIP up attachments, not .RAR/.ARJ/etc them.

Share this post


Link to post

Thanks. I am new to forum. I will take care of proper ways to post threads and .zips. Thanks again. Bye

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
×