Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New Chg or Out LD88 data.was

Procomm Plus Nortel Scripts

New Chg or Out LD88 data.was

by  Firebird Scrambler  Posted    (Edited  )
; Enter Change or Out AUB AUT in LD 88 16th October 2009

; 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..

; AUB , CLAS , DSP , RLI e.g.

; 6000,4,LSC,22,
; 6001,4,DN,22,
; 6002,4,LSC,22,
; 6003,4,LSC,22, (etc)

; AUT = CODE , CLAS Number , e.g.

; 6000,001,
; 6001,002,
; 6002,002,
; 6003,004, (etc)

; SAR = SGRP , OFFP , STAR , STOP , DAYS , COS , TGAR , NCOS , ICR , LOCK e.g.

; 0,1,00 01,10 00,1 2 3 4,TLD,1,4,YES,1
; 1,2,00 10,11 00,1 2 3 4 5 6 7,UNR,0,7,YES,1
; 2,4,01 00,12 00,2 3 4 5,TLD,1,6,YES,1
; 3,5,02 01,21 00,1 2 3 4 5 6,TLD,1,6,YES,1 (etc)

; 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

; A problem was found when using a PWD1 or PWD2 login as the SPWD prompt appears in LD 88.
; Please only use access via a LAPW login as this resolves the problem, because the prompt doesn't appear.


#include "vkeys.inc" ; You must have this file "vkeys.inc"
; located within the "Aspect" folder!

string s_opdata[10]
STRING F_Time
integer i_mdm_clrdwn

proc main
integer i_ch
integer i_evt
integer i_fch_tx_val
integer i_tx_val
integer i_p
integer i_tmp

long l_tot_no_lin
long l_lin_cnt
long l_prog_bar_op
long l_fi_sz0
long l_cur_fi_sz0

string s_fi_nm
string s_tx_list = "0,5,10,15,20,25,50,80,100,120,180,200,300,400,500,600,700"
string s_tx_item = "120"
string s_dir
string s_pwd
string s_userid
string s_time_start
string s_date_start
string s_progress
string s_prog_bar
string s_sce_lin
string s_fi_ext_item = "*.CSV"
string s_type_list = "NEW,CHG,OUT"
string s_type_item = "NEW"
string s_type_cdplst = "AUT,AUB,SAR"
string s_type_cdp = "AUT"
string s_type_REQ = "REQ"
string s_list_customer = "0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87"
string s_customer_item = "0"

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

dirlistbox 12 10 135 134 88 "*.csv" SINGLE s_fi_nm 21 SORT ; Source file drop down box
editbox 23 386 19 73 11 s_userid 11
editbox 13 386 35 74 11 s_pwd 16 MASKED
editbox 37 417 92 38 11 s_date_start 8
editbox 38 417 130 38 11 s_time_start 8
combobox 24 423 163 30 170 DROPDOWNLIST s_tx_list s_tx_item

dirpath 21 10 123 134 11 s_dir ; Location path of where the source file is located

checkbox 40 340 280 130 11 "Modem cleardown on completion" i_mdm_clrdwn

groupbox 69 164 270 160 70 " 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 74 330 270 140 70 " Tick Modem cleardown if it's needed!"
pushbutton 14 415 295 40 13 "Accept"
pushbutton 15 340 295 40 13 "Cancel"
text 75 340 310 110 11 "Please use a LAPW account to avoid" center
text 76 340 320 110 11 "the display of the SPWD prompt!" 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!"

cnt_no_fi_lines(i_ch,&l_tot_no_lin,&l_fi_sz0)

fetch txpace i_fch_tx_val
atoi s_tx_item i_tx_val
strcat s_tx_item " ms"
set txpace i_tx_val

datetimestart(s_time_start,s_date_start)
logi(s_userid)
login(s_pwd)

STATMSG "The AUB / AUT or SAR auto start date/time program has now started!"

if strcmp s_type_cdp "OUT"
txdc ("LD 88")
waitfor "REQ "
txdc ("OUT")
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
else
ld_ovl_88(s_type_item,s_type_cdp,s_customer_item)
endif

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

get_opdata(s_sce_lin)

strfmt s_progress "Line %ld of %ld" l_lin_cnt l_tot_no_lin
dlgupdate 1 1
dlgupdate 1 6
s_sce_lin = ""
i_p = 0

if strcmp s_type_item "OUT"
out_cdp(s_type_cdp,s_customer_item)
else
if strcmp s_type_cdp "AUT"
send_opdata_aut(s_type_item)
elseif strcmp s_type_cdp "AUB"
send_opdata_aub(s_type_item,s_type_cdp,s_customer_item)
elseif strcmp s_type_cdp "SAR"
send_opdata_sar(s_type_item,s_type_cdp,s_customer_item)
endif
endif

loopwhile
endif
endif
strputc s_sce_lin i_p i_ch
i_p++
endif
endwhile

ex_ovl_88(s_type_cdp,s_customer_item) ;()

set txpace i_fch_tx_val
fclose 0

endif

dlgdestroy 1 cancel

endproc

proc get_opdata ;#####

param string s_sce_lin

Capture On

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 "SPWD " CALL SPWD_0000

WHEN TARGET 25 "SCH1328 " CALL SCH1328
WHEN TARGET 26 "SCH8796 " CALL SCH8796
WHEN TARGET 28 "AUTH001 " CALL AUTH001
WHEN TARGET 29 "AUTH002 " CALL SPWD_9999
WHEN TARGET 31 "AUTH005 " CALL AUTH005
WHEN TARGET 32 "AUTH006 " CALL AUTH006
WHEN TARGET 33 "AUTH007 " CALL AUTH007
WHEN TARGET 34 "AUTH008 " CALL AUTH008
WHEN TARGET 35 "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)

endproc

proc send_opdata_aut ;#####

param string s_type_item

if strcmp s_type_item "NEW"

txdc (s_opdata[0])
waitfor "SARC "
txdc ("")
waitfor "CLAS "
txdc (s_opdata[1])
waitfor "CODE "

else ; "CHG"
txdc (s_opdata[0])
waitfor "SARC "
txdc ("")
waitfor "CLAS "
txdc (s_opdata[1])
waitfor "CODE "

endif

endproc

proc send_opdata_aub ;#####
param string s_type_item
param string s_type_cdp
param string s_customer_item

if strcmp s_type_item "NEW"

; waitfor "ALEN "
; txdc ("4") ; Change to the digit length required! Max setting allowed is 14.
; waitfor "ACDR "
; txdc ("YES")
; waitfor "RANR "
; txdc ("X")
waitfor "CLAS "
txdc (s_opdata[0])
waitfor "COS "
txdc (s_opdata[1])
waitfor "TGAR "
txdc (s_opdata[2])
waitfor "NCOS "
txdc (s_opdata[3])
waitfor "CLAS "
txdc ("")
waitfor "REQ "
txdc ("CHG")
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
; waitfor "ACDR "
; txdc ("YES")
; waitfor "RANR "
; txdc ("X")
; waitfor "CLAS "

else ; "CHG"
; waitfor "ACDR "
; txdc ("YES")
; waitfor "RANR "
; txdc ("X")
waitfor "CLAS "
txdc (s_opdata[0])
waitfor "COS "
txdc (s_opdata[1])
waitfor "TGAR "
txdc (s_opdata[2])
waitfor "NCOS "
txdc (s_opdata[3])
waitfor "CLAS "
txdc ("")
waitfor "REQ "
txdc ("CHG")
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
; waitfor "ACDR "
; txdc ("YES")
; waitfor "RANR "
; txdc ("X")
; waitfor "CLAS "

endif

endproc

proc send_opdata_sar ;#####
param string s_type_item
param string s_type_cdp
param string s_customer_item

if strcmp s_type_item "NEW"

txdc (s_opdata[0])
waitfor "SCDR "
txdc ("YES")
waitfor "OFFP "
txdc (s_opdata[1])
waitfor "STAR "
txdc (s_opdata[2])
waitfor "STOP "
txdc (s_opdata[3])
waitfor "DAYS "
txdc (s_opdata[4])
waitfor "COS "
txdc (s_opdata[5])
waitfor "TGAR "
txdc (s_opdata[6])
waitfor "NCOS "
txdc (s_opdata[7])
waitfor "OFFP "
txdc ("")
waitfor "ICR "
txdc (s_opdata[8])
waitfor "LOCK "
txdc (s_opdata[9])
waitfor "REQ "
txdc (s_type_item)
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
waitfor "SGRP "

else ; "CHG"
txdc (s_opdata[0])
waitfor "SCDR "
txdc ("YES")
waitfor "OFFP "
txdc (s_opdata[1])
waitfor "STAR "
txdc (s_opdata[2])
waitfor "STOP "
txdc (s_opdata[3])
waitfor "DAYS "
txdc (s_opdata[4])
waitfor "COS "
txdc (s_opdata[5])
waitfor "TGAR "
txdc (s_opdata[6])
waitfor "NCOS "
txdc (s_opdata[7])
waitfor "OFFP "
txdc ("")
waitfor "ICR "
txdc (s_opdata[8])
waitfor "LOCK "
txdc (s_opdata[9])
waitfor "REQ "
txdc (s_type_item)
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
waitfor "SGRP "

endif

endproc

proc cnt_no_fi_lines ;#####

param integer i_ch
param long l_tot_no_lin
param long l_fi_sz0

while not feof 0
fgetc 0 i_ch
if not feof 0
if i_ch == '`n'
l_tot_no_lin++
endif
endif
endwhile

ftell 0 l_fi_sz0
rewind 0

endproc

;proc txdt ;#####

;param string s_txs
;integer i_p = 0
;integer i_ch = -1

; strgetc s_txs i_P i_ch
; i_p++

; while i_ch != 0
; computc i_ch
; strgetc s_txs i_P i_ch
; i_P++
; endwhile

;endproc

proc txdc ;#####

param string s_txs
integer i_p = 0
integer i_ch = -1

strgetc s_txs i_P i_ch
i_p++

while i_ch != 0
computc i_ch
strgetc s_txs i_P i_ch
i_P++
endwhile

computc 13

endproc

proc ld_ovl_88 ;#####

param string s_type_item
param string s_type_cdp
param string s_customer_item

txdc ("LD 88")
waitfor "REQ "
txdc (s_type_item)
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
; pause 2
STATMSG " Start of Progress status bar and changes to be made in LD 88"
endproc

proc ex_ovl_88 ;#####
param string s_type_cdp
param string s_customer_item

txdc ("")
pause 2
; txdc ("**")
; pause 2
STATMSG " Printout of changes made in LD 88"
waitfor "REQ "
txdc ("PRT") ; Prints out the relevent Auth / Sar data in LD 88
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
pause 4
txdc ("")
waitfor "REQ " FOREVER
txdc ("****")
waitfor ">"

ALARMS_LIST ()
LOGO ()
endproc

proc out_cdp ;#####

param string s_type_cdp
param string s_customer_item

if strcmp s_type_cdp "AUT"
txdc (s_opdata[0])
waitfor "CODE "
elseif strcmp s_type_cdp "AUB"
txdc (s_opdata[0])
waitfor "REQ "
txdc ("***")
waitfor "REQ "
CALL ALARMS_LIST
elseif strcmp s_type_cdp "SAR"
txdc (s_opdata[0])
waitfor "REQ "
txdc ("OUT")
waitfor "TYPE "
txdc (s_type_cdp)
waitfor "CUST "
txdc (s_customer_item)
waitfor "SGRP "

endif

endproc

PROC AUTHCOD_ALRM
pause 4
txdc ("")
ENDPROC

PROC CARR_RETURN
txdc ("")
ENDPROC

Proc SPWD_0000
; waitfor "SPWD" 2
; pause 4
; txdc ("")
; pause 2
txdc ("0000") ; Change to the SPWD passcode required!.
; waitfor "CODE " 2
; txdc ("")
endproc

Proc SPWD_9999
pause 2
txdc ("NEW")
WAITFOR "TYPE" 2
txdc ("AUT")
WAITFOR "CUST " 2
txdc ("0")
WAITFOR "SPWD " 2
pause 4
txdc ("9999")
endproc

Proc TTY_LOGIN
pause 3
txdc ("LOGI")
endproc

Proc ACDR
txdc ("YES")
endproc

Proc ALEN
txdc ("4") ; Change to the digit length required! Max setting allowed is 14.
endproc

Proc RANR
txdc ("X")
endproc

Proc AUTH001
txdc ("0")
endproc

PROC AUTH005
pause 1
STATMSG "Number of Authcode digits entered does not match the ALEN setting!."
ENDPROC

Proc AUTH006
txdc ("****")
txdc ("LD 88")
; waitfor "REQ"
endproc

PROC AUTH007
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Specified Authcode already exists!."
exit
ENDPROC

PROC AUTH008
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Specified Authcode does not exist!."
exit
ENDPROC

PROC AUTH009
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Specified Authcode already exists!."
exit
ENDPROC

PROC SCH1328
txdc ("****")
pause 4
txdc ("LOGO")
USERMSG "Script file has stopped, Invalid input type!."
exit
ENDPROC

Proc SCH8796
txdc ("****")
; waitfor ">"
txdc ("LD 88")
waitfor "REQ"
endproc

PROC TEN
txdc ("")
ENDPROC

PROC AUTO_NO
txdc ("NO")
ENDPROC

Proc OVL013
txdc ("****")
endproc

PROC OVL111
txdc ("****")
waitfor ">"
USERMSG "Script failed, as the TTY user is NOT logged into the system!"
exit
endproc

PROC OVL428
USERMSG "Script failed. The Login name & password combination is invalid. Check the password & login name & try again.!"
exit
endproc

PROC OVL014
STATMSG "Please wait 30 seconds as the TTY is already logged in!"
endproc

PROC DATETIMESTART

param string s_time_start
param string s_date_start
integer i_tmp

strlen s_date_start i_tmp
if i_tmp >5
strlen s_time_start i_tmp
if i_tmp <2
s_time_start = "00:10:00"
endif
endif
strlen s_time_start i_tmp
if i_tmp >5
strlen s_date_start i_tmp
if i_tmp <2
s_date_start = $DATE
endif
endif

Waituntil s_time_start s_date_start
endproc

proc logi ;#####
param string s_userid
When Target 0 "OVL014 " CALL OVL014
When Target 1 "OVL428 " CALL OVL428
When Target 2 "SCH0510 " CALL OVL014
WHEN TARGET 3 "OVL013 " CALL TTY_LOGIN

transmit "LOGI "
; txdc ("LOGI ")
txdc (s_userid)
waitfor "PASS?"
endproc

proc login ;#####
param string s_pwd
txdc (s_pwd)
waitfor ">"
txdc ("****")
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 ("****")

; ###################### "VERSION 19.xx Onwards, Time Forward / Backward 1 Hour!"
; "United Kingdom Settings!"

; txdc ("LD 2")
; STATMSG " To set the UK daylight saving hours"
; pause 8
; txdc ("TTAD")
; txdc ("TDST")
; txdc ("FWTM 3 5 1 02")
; txdc ("BWTM 10 5 1 02")
; txdc ("SDST ON")
; 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


; 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.
;;**********************************************************************

;#define KV_SHIFT 0x01 ; Shift key pressed
;#define KV_CTRL 0x02 ; Ctrl key pressed
;#define KV_ALT 0x04 ; Alt key pressed
;#define KV_EXT 0x08 ; Extended key flag
;#define KV_CAPSLOCK 0x10 ; Caps Lock key toggled on

;#define MAKE_KV(skeys,vkey) (((skeys) << 8) | (vkey))

;#define KV_VKEY(keyval) ((keyval) & 0xFF)
;#define KV_SKEYS(keyval) ((keyval) >> 8)

;#define KV_SHIFTKEY(keyval) (KV_SKEYS(keyval) & KV_SHIFT)
;#define KV_CTRLKEY(keyval) (KV_SKEYS(keyval) & KV_CTRL)
;#define KV_ALTKEY(keyval) (KV_SKEYS(keyval) & KV_ALT)
;#define KV_EXTKEY(keyval) (KV_SKEYS(keyval) & KV_EXT)

;#endif ; _INC_VKEYS
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top