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

How to make BCMS on a lot of VDN's ??

Status
Not open for further replies.

matyi7700

Technical User
May 15, 2006
7
CH
Hi,

Can somebody tell me how I can run quickly a BCMS report on ~1000 VDN's ?

I don't wan't to enter for every vdn a line in ASA or ATE, and I heard somewhere that you can make a script for this issue.

Thx.
 
matyi7700,

you can use any terminal emulator available out there that supports scripting.
talking about 1000 vnds, i do think you'd better consider purchasing cms here.
 
:) we have CMS, but when the ACD link is down we need BCMS :)

I don't know the scripting solution, may I ask a sample script file to see how do I enter a definity command inside it ?

Thx.
MA
 
Export your VDN numbers, then massage the data and run a report from the advanced report option within ASA. I use Excel and notepad to get into the correct format below.

Run the following with your values:

list bcms vdn xxxx;list bcms vdn xxxx; repeat... then run and schedule the report if needed.

Using this method you can screen print, screen to file, or export fields to a file, email the report etc...

1000 plus vdn's will take a bit of time running, but sure beats typing them in each time and would be a lot quicker.

Thanks,

Wildcard
 
This one doesn't work.
Doesn't recognize neither the list bcms vdn XXXX;list bcms vdn XXXX; or list bcms vdn XXXX YYYY ZZZZ.....

I need other ideas.
 
Are you sure BCMS is enabled in customer options on the switch?

"Been there, done that and got the teeshirt
 
HI All,

I found the solution how to make from a lot of VDN's bcms report in case the CMS ACD link is down and you need to give a report to business.

This works only whit Terminal Emulator.
You create from the below written lines a *.scr file (script file) and you run the script file from ATE.The last 2 lines (vdn 6561)contains the command for bcms and you just multiply whit the vdn numbers. The listing will be done into a txt file.

LABEL ALMA
SEND "\r"
WAITFOR 30 "Login: " "O CARRIER" GOTO ALMA_ok GOTO ALMA
GOTO ALMA

LABEL ALMA_ok
SEND "you type here the user id\r"
WAITFOR 60 "Password: " "O CARRIER" GOTO ALMA_log_ok
GOTO ALMA

LABEL ALMA_log_ok
SEND "you type here the password\r"
WAITFOR 60 "[513]" "O CARRIER" GOTO ALMA_pass_ok GOTO ALMA



LABEL ALMA_pass_ok
SEND "4410\r"
WAITFOR 60 "ommand: " "O CARRIER" GOTO ALMA_term_ok GOTO ALMA

LABEL ALMA_term_ok
CAPTURE c:\BCMS_VDN_LIST.txt
SEND "l bcms vdn 6561 print\r"
WAIT 60 "ommand:"
SEND "l bcms vdn 6562 print\r"
WAIT 60 "ommand:"



If for somebody isn't clear write me a mail address and I will send the script file sample. Also you can use other commands whit the send/wait definity commands.


MA
 
Take a look at BCMSit from it's part of the Call Flow Extract. You should be able to add all of your VDN's in here fairly easily and then schedule your reports to run!


Barry
 
In ASA in the advanced section, click on report, in the window that comes up enter:

list bcms vdn XXXX;list bcms vdn XXXX; ..... list the rest of them out.

XXXX being your actual VDN numbers.

Thanks,

Wildcard


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top