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

Reports - Application Performance

Status
Not open for further replies.

rblev

ISP
Jun 9, 2005
3
US
Our call center is only open M-F but my reports are including Sat & Sun stats. How would I exclude Sat and Sun from Daily, Weekly and Monthly reports? I want to run the Application Performance report for each month but I don't want it to include weekends.
 
As far as I remember you can set it under Configuration, Historical Statistics, Business days and Business Hours.
You can exclude sat and sun from the statistics collection.
 
There is more than one way to get there. If you don't want to see stats hit your applications on weekends, you can use a clause in your Master script to send calls on Saturday and Sunday to a weekend script. Like this:

IF DAY OF WEEK = SATURDAY..SUNDAY THEN
EXECUTE SCRIPT Weekend_closed_app
ELSE
EXECUTE SCRIPT Weekday_open_app
END IF

Then you only pull application reports for the Weekday_open_app.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top