I have the password, its 0000 and i looked through the script provided by firebird and it appears to be in there, but for some reason its not getting passed it.
I'll try my script tomorrow, but have you created the file below that the script needs to see?.
; The information listed below has been taken from the "vkeys.inc" file.
; I have added in one ";" against each line for use with this file!.
; Should your copy of "vkeys.inc" be missing or damaged, then you can copy this
; section listed below with one of the ";" removed for each line!.
;;Definitions of standard virtual key code values
;;**********************************************************************
;;* VKEYS.INC
;;* Copyright (c) 1999 Symantec Corporation
;;*
;;* Definitions of standard virtual key code values. Use these macro
;;* definitions in your ASPECT script files rather than hard-coded
;;* constants to improve maintainability and readability. For more
;;* information, see the keyval and vkey conventions described in the
;;* Windows ASPECT Script Language reference manual.
;;**********************************************************************
;#ifndef _INC_VKEYS ; if file not already included
;#define _INC_VKEYS ; prevent further inclusion
;;**********************************************************************
;;* Macro definitions of standard virtual key code values
;;**********************************************************************
;#define VK_LBUTTON 0x01 ; Left mouse button
;#define VK_RBUTTON 0x02 ; Right mouse button
;#define VK_CANCEL 0x03 ; Ctrl-Break
;#define VK_MBUTTON 0x04 ; Middle mouse button
;; 0x05-0x07 ; Undefined
;#define VK_BACK 0x08 ; Backspace key
;#define VK_TAB 0x09 ; Tab key
;; 0x0A-0x0B ; Undefined
;#define VK_CLEAR 0x0C ; Clear key or Keypad 5 with Num lock off
;#define VK_RETURN 0x0D ; Enter or Return key
;; 0x0E-0x0F ; Undefined
;#define VK_SHIFT 0x10 ; Shift key
;#define VK_CONTROL 0x11 ; Control or Ctrl key
;#define VK_MENU 0x12 ; Menu or Alt key
;#define VK_PAUSE 0x13 ; Pause key
;#define VK_CAPITAL 0x14 ; Capital or Caps Lock key
;; 0x15-0x19 ; Reserved for Kanji Systems
;; 0x1A ; Undefined
;#define VK_ESCAPE 0x1B ; Esc or Escape key
;; 0x1C-0x1F ; Reserved for Kanji Systems
;#define VK_SPACE 0x20 ; Spacebar
;#define VK_PRIOR 0x21 ; Page Up key
;#define VK_NEXT 0x22 ; Page Down key
;#define VK_END 0x23 ; End key
;#define VK_HOME 0x24 ; Home key
;#define VK_LEFT 0x25 ; Left arrow key
;#define VK_UP 0x26 ; Up Arrow key
;#define VK_RIGHT 0x27 ; Right Arrow key
;#define VK_DOWN 0x28 ; Down Arrow key
;#define VK_SELECT 0x29 ; Select key
;#define VK_PRINT 0x2A ; Keyboard (OEM) specific
;#define VK_EXECUTE 0x2B ; Execute key
;#define VK_SNAPSHOT 0x2C ; Print Screen key
;#define VK_INSERT 0x2D ; Insert key
;#define VK_DELETE 0x2E ; Delete key
;#define VK_HELP 0x2F ; Help key
;#define VK_0 0x30 ; 0 key
;#define VK_1 0x31 ; 1 key
;#define VK_2 0x32 ; 2 key
;#define VK_3 0x33 ; 3 key
;#define VK_4 0x34 ; 4 key
;#define VK_5 0x35 ; 5 key
;#define VK_6 0x36 ; 6 key
;#define VK_7 0x37 ; 7 key
;#define VK_8 0x38 ; 8 key
;#define VK_9 0x39 ; 9 key
;; 0x3A-0x40 ; Undefined
;#define VK_A 0x41 ; A key
;#define VK_B 0x42 ; B key
;#define VK_C 0x43 ; C key
;#define VK_D 0x44 ; D key
;#define VK_E 0x45 ; E key
;#define VK_F 0x46 ; F key
;#define VK_G 0x47 ; G key
;#define VK_H 0x48 ; H key
;#define VK_I 0x49 ; I key
;#define VK_J 0x4A ; J key
;#define VK_K 0x4B ; K key
;#define VK_L 0x4C ; L key
;#define VK_M 0x4D ; M key
;#define VK_N 0x4E ; N key
;#define VK_O 0x4F ; O key
;#define VK_P 0x50 ; P key
;#define VK_Q 0x51 ; Q key
;#define VK_R 0x52 ; R key
;#define VK_S 0x53 ; S key
;#define VK_T 0x54 ; T key
;#define VK_U 0x55 ; U key
;#define VK_V 0x56 ; V key
;#define VK_W 0x57 ; W key
;#define VK_X 0x58 ; X key
;#define VK_Y 0x59 ; Y key
;#define VK_Z 0x5A ; Z key
;#define VK_WINDOWSL 0x5B ; Windows key (left)
;#define VK_WINDOWSR 0x5C ; Windows key (right)
;#define VK_APPLICATION 0x5D ; Application key
;; 0x5E-0x5F ; Undefined
;#define VK_NUMPAD0 0x60 ; Numeric Keypad 0
;#define VK_NUMPAD1 0x61 ; Numeric Keypad 1
;#define VK_NUMPAD2 0x62 ; Numeric Keypad 2
;#define VK_NUMPAD3 0x63 ; Numeric Keypad 3
;#define VK_NUMPAD4 0x64 ; Numeric Keypad 4
;#define VK_NUMPAD5 0x65 ; Numeric Keypad 5
;#define VK_NUMPAD6 0x66 ; Numeric Keypad 6
;#define VK_NUMPAD7 0x67 ; Numeric Keypad 7
;#define VK_NUMPAD8 0x68 ; Numeric Keypad 8
;#define VK_NUMPAD9 0x69 ; Numeric Keypad 9
;#define VK_MULTIPLY 0x6A ; Multiply key
;#define VK_ADD 0x6B ; Add key
;#define VK_SEPARATOR 0x6C ; Separator key
;#define VK_SUBTRACT 0x6D ; Subtract key
;#define VK_DECIMAL 0x6E ; Decimal key
;#define VK_DIVIDE 0x6F ; Divide key
;#define VK_F1 0x70 ; Function key F1
;#define VK_F2 0x71 ; Function key F2
;#define VK_F3 0x72 ; Function key F3
;#define VK_F4 0x73 ; Function key F4
;#define VK_F5 0x74 ; Function key F5
;#define VK_F6 0x75 ; Function key F6
;#define VK_F7 0x76 ; Function key F7
;#define VK_F8 0x77 ; Function key F8
;#define VK_F9 0x78 ; Function key F9
;#define VK_F10 0x79 ; Function key F10
;#define VK_F11 0x7A ; Function key F11
;#define VK_F12 0x7B ; Function key F12
;#define VK_F13 0x7C ; Function key F13
;#define VK_F14 0x7D ; Function key F14
;#define VK_F15 0x7E ; Function key F15
;#define VK_F16 0x7F ; Function key F16
;#define VK_F17 0x80 ; Function key F17
;#define VK_F18 0x81 ; Function key F18
;#define VK_F19 0x82 ; Function key F19
;#define VK_F20 0x83 ; Function key F20
;#define VK_F21 0x84 ; Function key F21
;#define VK_F22 0x85 ; Function key F22
;#define VK_F23 0x86 ; Function key F23
;#define VK_F24 0x87 ; Function key F24
;; 0x88-0x8F ; Unassigned
;#define VK_NUMLOCK 0x90 ; Num Lock key
;#define VK_OEM_SCROLL 0x91 ; Scroll Lock key
;; 0x92-0xB9 ; Unassigned
;; 0xBA-0xC0 ; Keyboard (OEM) specific
;; 0xC1-0xDA ; Unassigned
;; 0xDB-0xE4 ; Keyboard (OEM) specific
;; 0xE5 ; Unassigned
;; 0xE6 ; Keyboard (OEM) specific
;; 0xE7-0xE8 ; Unassigned
;; 0xE9-0xF5 ; Keyboard (OEM) specific
;; 0xF6-0xFE ; Unassigned
;;**********************************************************************
;;* Useful macros for testing and forming key values from keyboard
;;* shift states and virtual key code values.
;;**********************************************************************
I've looked at the script again and you might need to increase the transmit pace in the drop down box. Also the pause time might need to be changed as shown below.
Proc SPWD_0000
pause 6 ; change to a lower or higher number
txdc ("0000")
PAUSE 6
WAITFOR "CODE " 2
txdc ("")
endproc
The error message of AUTH002 would indicate that either 0000 is the wrong password (or whatever it's set as) or the passcode is being entered at a speed that is too great for the system?.
Firebird, I just tried that and I'm gettin the same results. Is it possibe for you to look at this sometime today. I have a project that needs to get done by this weekend and your script is the only thing that might save it.
here you go, I acutally some how got it wait for SPWD and I can enter the 0000 there and it seems to work. The only issue I have now is that is takes long time to import the codes. I Imported 6 codes and it took about 3 minutes. I have unload about 3000 over the weekend. That's going to take forever. Is there anything is the script that can be modified to speed it up.
Thanks so much
; Enter Change or Out AUB AUT in LD 88 20th June 2006
; NOTE!
; This program will only work with a WINDOWS version of Procomm Plus.
; The " ; " denotes that the data on the program file line is ignored,
; when the script is run.
; The program is designed to make changes to a customers Auth codes by adding, deleting
; AUB's AUT's & SAR's etc in LD 88. The source data must be in a Excel "CSV" format
; & also in the column order as follows..
; This program file should remain unaltered & only copies made from it for whatever
; use is required. P.S. I suggest that you make it a "READ ONLY" file. & store it on
; your P.C's HARD DRIVE.
; There will be a % counter running in a separate box on the right hand side
; showing the progress of the script with number of changes left to do.
; If your source file (example below) has lines of data of this length or more, then the script will FAIL with a
; message of Error 1: Value out of range
; Please reduce the data for that line. e.g. a line of data that is too long is..
;1140,066 0 00 25,1140,0,74210,1,6,1421,10,1111,FBA CRPA HFA CNIA DNDA PUA VOLA VOUA CFXA ICRA,2,7000,74210,74210,0,0,SCR 4213 0,SCN 4212 0,SCN 4216 0,SCN 4218 0,SCN 4219 0,SCN 4222,ADL 8 4230,ADL 8 4019,ADL 8 5302,SCN 4211 0,SCN 4791 0,ADL 8, ,CFW 6,RNP,SSU 10 (262 CHARACTERS!)
; Trim the data down to e.g.
;1140,066 0 00 25,1140,0,74210,1,6,1421,10,1111,FBA CRPA HFA CNIA DNDA PUA VOLA VOUA CFXA ICRA,2,7000,74210,74210,0,0,SCR 4213 0,SCN 4212 0,SCN 4216 0,SCN 4218 0,SCN 4219 0,SCN 4222,ADL 8 4230,ADL 8 4019,ADL 8 5302,SCN 4211,SCN 4791,ADL 8, ,CFW 6,RNP,SSU 10
#include "vkeys.inc" ; You must have this file "vkeys.inc"
; located within the "Aspect" folder!
dialogbox 0 13 17 476 350 11 " Nortel Procomm script file to enter, change or remove a AUT / AUB and SAR in LD 88. V01.3 20th June 2006"
groupbox 52 3 2 146 105 " LD 88 main Auth codes details to input"
groupbox 57 9 12 132 52 " Enter in the required parameters"
text 53 20 25 72 11 "New / Change or Out" center
combobox 82 95 23 40 80 DROPDOWNLIST s_type_list s_type_item SORT
text 42 20 49 72 11 "AUT / AUB or SAR" center
combobox 30 95 47 40 80 DROPDOWNLIST s_type_cdplst s_type_cdp
groupbox 41 7 71 136 30 " Enter the Customer number"
combobox 10 109 81 26 250 DROPDOWNLIST s_list_customer s_customer_item
text 16 21 83 84 11 "Select between 0 and 87" left
groupbox 69 164 270 160 60 " What this script will do after changes are made!"
text 70 169 285 146 11 "LD 88 data is printed After completion" center
text 71 169 295 146 11 "LD 32 is accessed to cancel any alarms" center
text 72 169 305 146 11 "LD 43 is accessed and a EDD is done" center
text 73 169 315 146 11 "This script will then logoff and exit the system " center
groupbox 58 164 152 110 34 " Useful info to check first"
text 59 169 162 100 11 "Script should work for" center
text 61 169 172 100 11 "most systems!" center
groupbox 46 280 152 188 34 " Select the systems Transmit Pacing"
text 25 285 165 135 11 "Use a higher number on older software!." left
groupbox 49 164 3 302 48 " Enter the systems Login Name and Password in the box's below to run the script file"
text 22 190 20 190 11 "Name or User ID. (No Name = any character key pressed!)" left
text 47 217 37 166 11 "Switch Password is Case Sensitive for V4.5 onwards" left
groupbox 50 164 60 304 86 " Date and Start time functions"
text 36 169 72 294 11 "If you want the program to Date start, then enter the Date as e.g. 23/12/05 in the box below" center
text 31 169 92 248 11 "Pressing the (Space Bar) = Auto Start, or enter the required Date for it to run" left
text 32 418 82 34 9 "Dy/Mh/Yr" center
text 29 169 110 294 11 "If you want the program to Time start, then enter the time in 24Hr format in the box below" center
text 34 169 130 248 11 "Pressing the (Space Bar) = Auto Start, or enter the start Time = e.g. 16:20:00 " left
text 39 419 120 34 9 "Hr:Mn:Sc" center
groupbox 51 5 110 145 230 " Source file MUST be in a *.CSV format!"
text 54 8 215 138 11 " AUB and AUT examples. Use on V19+" center
text 43 8 225 136 11 "AUB = CLAS , COS , TGAR , NCOS e.g." center
text 44 8 235 136 11 "004,TLD,1,07," center
text 45 8 245 136 11 "001,UNR,2,01," center
text 48 8 260 136 11 "AUT = CODE , CLAS number , e.g." center
text 60 8 270 136 11 "6003,004," center
text 63 8 280 136 11 "6006,004, (etc)" center
text 64 8 295 138 11 "SAR = SGRP,OFFP,STAR,STOP,DAYS," center
text 65 8 305 138 11 "and also COS,TGAR,NCOS,ICR,LOCK, e.g." center
text 67 8 315 138 11 "0,1,00 01,23 00,2 3 4 5 6,TLD,1,7,NO,1" center
text 68 8 325 138 11 "1,2,00 10,11 00,1 7,UNR,0,7,YES,1 (etc)" center
groupbox 56 164 188 304 78 " Read this section FIRST! if you intend to use the delayed start function"
text 55 168 198 290 16 " If you are planning to use the delayed start time / date function, then follow the instruction listed below " left
text 35 167 216 290 26 " Please remember to check your capture file settings under the following headings's (Options, Data Options, Setup Files, Capture File Options, Control Options) to UNCHECK the box marked (Query for file name when capture is started)!. " left
text 33 168 245 288 16 " Click (OK) & (OK) again before starting this script program. This will make the script capture the information if the delayed Date / Time start function is used!. " left
enddialog
while 1
dlgevent 0 i_evt
switch i_evt
case 0
if nullstr s_date_start
disable dlgctrl 0 14
elseif nullstr s_time_start
disable dlgctrl 0 14
elseif nullstr s_userid
disable dlgctrl 0 14
elseif nullstr s_pwd
disable dlgctrl 0 14
elseif nullstr s_fi_nm
disable dlgctrl 0 14
else
enable dlgctrl 0 14
endif
endcase
case 13
strlen s_pwd i_tmp
if i_tmp < 4
usermsg "Password `"%s`"`n`nThis must be between 4-16 characters in length & it is case sEnsTivE on V04.50 onwards!" s_pwd
sendvkey MAKE_KV(KV_SHIFT,VK_TAB)
endif
endcase
case 14
exitwhile
endcase
case 15
exitwhile
endcase
case 23
strlen s_userid i_tmp
if i_tmp < 1
usermsg "Name or UserID `"%s`"`n`nName can be up to 11 Characters. Otherwise enter a dummy name or press the Space Bar to accept the entry" s_userid
sendvkey MAKE_KV(KV_SHIFT,VK_TAB)
endif
endcase
case 28
exitwhile
endcase
case 29
exitwhile
endcase
case 30
dlgupdate 0 24
endcase
case 37
strlen s_date_start i_tmp
if i_tmp < 1
usermsg "Start Date `"%s`"`n`nmust be 6 Numbers in length and with a (/) in between every 2 digits. or you can just press the Space Bar to leave the box blank to Auto Start the Listing program" s_date_start
sendvkey MAKE_KV(KV_SHIFT,VK_TAB)
endif
endcase
case 38
strlen s_time_start i_tmp
if i_tmp < 1
usermsg "Start Time `"%s`"`n`nmust be 6 Numbers in length and with a ) in between every 2 digits. or you can just press the Space Bar to leave the box blank to Auto Start the Listing program" s_time_start
sendvkey MAKE_KV(KV_SHIFT,VK_TAB)
endif
endcase
endswitch
endwhile
dlgdestroy 0 cancel
if i_evt != 14
exit
endif
if not fopen 0 s_fi_nm read
errormsg "Couldn't open file `"%s`"." s_fi_nm
else
STATMSG "Waiting for the AUB / AUT or SAR auto start date/time program to run. Make sure that auto capture is set correctly!"
dialogbox 1 350 52 280 65 14 " New Change or Out of AUT / AUB or SAR Progress Status Bar"
text 1 8 16 65 11 s_progress left
editbox 2 8 32 210 11 s_prog_bar
text 3 8 45 270 11 s_fi_nm left
text 4 220 5 55 11 "Transmit Pace" left
text 6 90 16 140 11 s_sce_lin left
text 5 230 16 35 11 s_tx_item left
text 7 90 5 70 11 "Source file Info" left
text 8 8 5 60 11 "Source file line No" left
enddialog
l_prog_bar_op = l_fi_sz0/40
while not feof 0
fgetc 0 i_ch
if not feof 0
ftell 0 l_cur_fi_sz0
if l_cur_fi_sz0 % l_prog_bar_op == 0
strcat s_prog_bar "#"
dlgupdate 1 2
endif
if i_ch == '`r'
loopwhile
endif
if i_ch == '`n'
l_lin_cnt++
strputc s_sce_lin i_p 0
if not nullstr s_sce_lin
WHEN TARGET 1 "TEN " CALL TEN
WHEN TARGET 2 "OVL111 " CALL OVL111
WHEN TARGET 3 "AUTO " CALL AUTO_NO
WHEN TARGET 4 "OVL013 " CALL OVL013
WHEN TARGET 5 "AUTHCOD_ALRM " CALL AUTHCOD_ALRM
WHEN TARGET 6 "ACLE " CALL CARR_RETURN
WHEN TARGET 7 "BRST " CALL CARR_RETURN
WHEN TARGET 8 "RTRY " CALL CARR_RETURN
WHEN TARGET 9 "ALEN " CALL ALEN
WHEN TARGET 10 "ACDR " CALL ACDR
WHEN TARGET 11 "RANR " CALL RANR
WHEN TARGET 12 "ESN006 " CALL ESN006
WHEN TARGET 13 "ESN009 " CALL ESN009
WHEN TARGET 14 "ESN014 " CALL ESN014
WHEN TARGET 15 "ESN017 " CALL ESN017
WHEN TARGET 16 "ESN019 " CALL ESN019
WHEN TARGET 17 "ESN022 " CALL ESN022
WHEN TARGET 18 "ESN026 " CALL ESN026
WHEN TARGET 19 "ESN028 " CALL ESN028
WHEN TARGET 20 "ESN029 " CALL ESN029
WHEN TARGET 21 "ESN030 " CALL ESN030
WHEN TARGET 22 "ESN048 " CALL ESN048
WHEN TARGET 23 "ESN062 " CALL ESN062
WHEN TARGET 24 "ESN073 " CALL ESN073
WHEN TARGET 25 "ESN115 " CALL ESN115
WHEN TARGET 26 "ESN125 " CALL ESN125
WHEN TARGET 27 "ESN127 " CALL ESN127
WHEN TARGET 28 "ESN128 " CALL ESN128
WHEN TARGET 29 "ESN131 " CALL ESN131
WHEN TARGET 30 "ESN134 " CALL ESN125
WHEN TARGET 31 "ESN136 " CALL ESN136
WHEN TARGET 32 "ESN139 " CALL ESN139
WHEN TARGET 33 "ESN158 " CALL ESN158
WHEN TARGET 34 "ESN188 " CALL ESN188
WHEN TARGET 35 "SCH1328 " CALL SCH1328
WHEN TARGET 36 "SCH8796 " CALL SCH8796
WHEN TARGET 37 "SPWD " CALL SPWD_0000
WHEN TARGET 38 "AUTH001 " CALL AUTH001
WHEN TARGET 39 "AUTH002 " CALL SPWD_0000
WHEN TARGET 41 "AUTH005 " CALL AUTH005
WHEN TARGET 42 "AUTH006 " CALL AUTH006
WHEN TARGET 43 "AUTH007 " CALL AUTH007
WHEN TARGET 44 "AUTH008 " CALL AUTH008
WHEN TARGET 45 "AUTH009 " CALL AUTH009
strtok s_opdata[0] s_sce_lin "," ;CODE for AUT & CLAS for AUB & SGRP for a SAR
strtok s_opdata[1] s_sce_lin "," ;CLAS for AUT & COS for AUB & OFFP for a SAR
strtok s_opdata[2] s_sce_lin "," ;TGAR for a AUB & STAR for a SAR
strtok s_opdata[3] s_sce_lin "," ;NCOS for a AUB & STOP for a SAR
strtok s_opdata[4] s_sce_lin "," ;DAYS for a SAR ( 1 2 3 4 5 6 7)
strtok s_opdata[5] s_sce_lin "," ;COS for a SAR
strtok s_opdata[6] s_sce_lin "," ;TGAR for a SAR
strtok s_opdata[7] s_sce_lin "," ;NCOS for a SAR (00 to 99)
strtok s_opdata[8] s_sce_lin "," ;ICR for a SAR (YES or NO)
strtok s_opdata[9] s_sce_lin "," ;LOCK for a SAR (1 to 8)
txdc ("LD 88")
waitfor "REQ "
txdc (s_type_item)
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
STATMSG " Start of Progress status bar and changes to be made in LD 88"
endproc
PROC ESN006
txdc ("**")
pause 2
STATMSG "Null input not allowed. Script will Continue to the next part."
ENDPROC
PROC ESN009
txdc ("")
ENDPROC
PROC ESN014
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Route list index number out-of-range (0-255 for NARS, 0-127 for BARS, 0-7 for CDP). Increase your MXRL value to be higher than your RLI number!."
exit
ENDPROC
PROC ESN017
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Route list does not exist, a value must be entered!."
exit
ENDPROC
PROC ESN019
txdc ("1")
STATMSG "Attendant number Out-of-range. A value of 1 - 7 must be entered. ALT (1) has been used!"
ENDPROC
PROC ESN022
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Route list entry does not exist!."
exit
ENDPROC
PROC ESN026
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Digit manipulation index number out-of-range. (1-255 for NARS/BARS,1-31 for CDP, 0-999 with FNP package 160). Increase your MXDM value to be higher than your DMI number!."
exit
ENDPROC
PROC ESN028
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped. Network translators, Route List Blocks, Digit Manipulation Tables, FCAS Tables, or CDP list still exist; ESN cannot be removed!."
exit
ENDPROC
PROC ESN029
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Null input not allowed, a value must be entered!."
exit
ENDPROC
PROC ESN030
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Route entered does not exist or exists but has no members. A value must be entered!."
exit
ENDPROC
PROC ESN048
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped. Digit manipulation table entry does not exist!."
exit
ENDPROC
PROC ESN062
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, No more available location codes. Go to LD 86 and change ESN (out or expand MXLC)!."
exit
ENDPROC
PROC ESN073
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Conflict with another (NPA, NXX, etc). Enter new SPN number!."
exit
ENDPROC
PROC ESN115
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Too few or too many digits entered. Re-enter only 1-4 digits per field of SPN!."
exit
ENDPROC
PROC ESN125
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, due to a invalid CDP entry!"
exit
ENDPROC
PROC ESN127
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Undefined Route List Index (RLI)!."
exit
ENDPROC
PROC ESN128
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Digit manipulation table does not exist!."
exit
ENDPROC
PROC LOGO
txdc ("LOGO") ; Check this box if you DON'T want to log out!
F_Time=$TIME
statmsg "LD 88 New, Out & Change script file has now been Completed`n`n at %s" F_TIME
pause 4
if i_mdm_clrdwn
waitfor "TTY"
pause 4
transmit "+++"
pause 4
waitfor "OK"
pause 4
txdc ("ATH0")
pause 4
Capture Off
usermsg "Modem cleardown & LD 88 New, Out & Change script file has now been Completed`n`n at %s" F_TIME
else
pause 4
endif
Capture Off
usermsg "LD 88 New, Out & Change script file has now been Completed`n`n at %s" F_TIME
endproc
PROC ALARMS_LIST
; ######## TO CANCEL ANY ALARMS IN LD 32 AFTER CHANGES ARE MADE
txdc ("LD 32")
STATMSG " To cancel any alarms in LD 32 after changes have been made"
pause 8
txdc ("CMIN ALL")
txdc ("CDSP")
txdc ("****")
; ######## TO DO A DUMP IN LD 43 AFTER CHANGES ARE MADE
txdc ("LD 43")
STATMSG " To do a system EDD in LD 43 after changes have been made"
pause 8
txdc ("EDD")
pause 250
; waitfor "." forever
txdc ("")
waitfor "EDD000"
txdc ("****")
endproc
I don't know, your guess is as good as mine. Procomm, is version 4.8 and also have version 25.15. I guess the only difference I can see is that I have 10 digit codes and expanding them to 14 digits. Is a possiblity for a delay ? Is there anything within procomm that would delay it
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.