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!

MDR 2000 OTM 2.2 81C w/3.0

Status
Not open for further replies.

redsjacketsfan

Technical User
Feb 29, 2008
22
0
0
US
Read the post from John/BSLD and ACE on the MDR 200 and CLID retrieval.

Below is the mdr2000.col script portion w/CLID

; Retrieve the Calling Line ID from the call.
let CheckPos = pos('D', M2KData$, FALSE)
if CheckPos <> 0 then
begin
loop
let M2KTemp$ = copy(M2KData$, 1, CheckPos-1)
let M2KTemp$ = M2KTemp$ + copy(M2KData$, CheckPos+1, 255)
let M2KData$ = M2KTemp$
let M2KChar$ = copy(M2KData$, CheckPos, 1)
if (M2KChar$ < '0') or (M2KChar$ > '9') then Exit
let CLID$ = CLID$ + M2KChar$
endloop
end

John or Ace when you say change the MDR2000 string, is the above what you are talking about, or something else. If it is can you tell me what I would change?

BTW I do get the CLID when I do a trace on a call. I just don't get it on the OTM reports.

Thank you in advance
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top