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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Speed Call List upload

Status
Not open for further replies.

hadacon

Technical User
Feb 13, 2007
30
0
0
SA
Hi,
Is there any way to upload the saved system speed call list rather than one by one number in case existing speed call list lost due to some reason.

 
very quick with a script if your using procomm.. same with names, taking names from an excel to a script is a no-brainer with scripts

john poole
bellsouth business
columbia,sc
 
if you need a script that pulls entries from a text file and uploads them to ld 18, let me know.. if your using procomm and don't use scripts your missing powerfull tool. i have added 500 3904 sets each unique (non copy) with names in under 4 hours,, and added all npa's and nxx's in under one hour...

i started on scripts 15 plus years mostly because i am to lazy to type

john poole
bellsouth business
columbia,sc
 
Hi Johnpoole
Thank you for your reply and offer for script. I am using procomm Plus but never use scripts. Kindly send me your script and steps how to use. Thanks

With best regards,
Hadacon
 
took a second to record and edit but it works, here's the script

Code:
proc main

 set txpace 30

string nub
   
   integer count
   string szline
   fopen 0 "numbers.wud" read

   while not feof 0
   SZLINE = "2"
   fgets 0 szline

    strtok nub szline "t"  1  
   
   waitfor "STOR "
   transmit nub
   waitfor "WRT  "
   transmit "^M"
   
    count += 2
   endwhile
   fclose 0
   fclose 1
   call main

copy that txt, from procomm alt f3, new and paste it there. do a save as to name it then compile it... then you need a txt file in the same folder named numbers.wud.. a wud is a save as file type from the aspect editor.. the file needs to look like this

Code:
00 15551212
01 9111111
02 91111
03 955555555
04 9555555
05 955555
06 95555555
07 92536134
08 97361320
09 9555555
10 95555555
11 9555555
12 9555
13 95555555
14 9555555

then start the script and add an scl, the script starts when it sees the 1st stor.. might need to tweak it for your location.. that set txpace line is slower... bump it up to run it faster, keep it slow to trouble shoot a script.. have fun


john poole
bellsouth business
columbia,sc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top