Page 1 of 1

Reporting to external source

Posted: Thu Feb 02, 2006 12:38 pm
by AScamp
Is there a way to have the softare generate a log daily to a network share, I don't need the granual reporting of every single call but I would like to have it push up a log file daily of all calls from the previous day..

Thanks

Reporting to external source

Posted: Fri Feb 03, 2006 7:33 am
by Bill Root
Hello AScamp,

There is no way in Ascendis Caller ID to trigger an event from anything but an incoming call. So while you could make an action export the call list or add a line to a text file, it would happen for every call. You could use the latter in conjunction with a job in Windows' Task Scheduler that would then copy the file to your network share.

To add a line to a text file, use an Advanced action similar to the following:

Code: Select all

// LANGUAGE=DWS

Log('C:\PhoneNumber.txt', CallInfo.DateTimeStr + ',' + CallInfo.Name + ',' + CallInfo.Number);
This will produce a file containing lines like this:

Code: Select all

02/03/2006 8:30:36 AM,Jane Doe,800 555-1212
Would that work for you?

Finest regards,
Bill Root
Ascendis Software