> OKay.. So good so far.. I have it running... One Problem.. The output
> doesn't match with what emerald says when it reports total time.. It seams
> to be related to the fact that emerald is rounding each session the adding
> the time up.. But The IDC simply ads The sessions then rounds.. Makes for
> an inconsistent match.. How can this be fixed?
Emerald uses per minute billing. My guess is they are doing accumulative
per second billing:
Sum( (AcctSessionTime/60) +1)
not
Sum(AcctSessionTime/60) or Sum(AcctSessionTime)/60
Dale