Shivinder Singh | Hi Giorgio Zanoni Assuming you have CSV records in a database with matching column names, - call duration is in the duration field (in seconds) - calling number is in the callingPartyNumber field (I've seen 4 digit - internal, 10 digit - US, 12 digit - Intl. - numbers in this field) - called number depends - originalCalledPartyNumber, finalCalledPartyNumber and huntPilotDN are 3 places to check (that I know of) - call time is in dateTimeOrigination field (seconds elapsed since January 1st, 1970) Quick C# code for: - converting call time: DateTime call_time = (new DateTime(1970,1,1)).AddSeconds(Convert.ToDouble(dateTimeOrigination)); - getting duration: TimeSpan timespan_duration = new TimeSpan(0, 0, int.Parse(duration)); |
| Please sign in to flag this as inappropriate. |