How to Automate/Email Enable Helpdesk Reports for Daily Backlog, Weekly Created/Closed for Enviorments with Multiple Queues
This article is intended to assist Helpdesk Admin automate daily backlog, weekly closed/open incidents, and weekly Individual team members performance reports for email delivery. This article is intended for Helpdesk environments that have numerous queues and need certain team's data sent via email for management review.
In our environment we have numerous queues and the default out of the box reports Altiris provides did not fit our team's needs since the reports show data for the system as a whole. See the queues below.
Our IT management team wanted the following reports that could also be automated and sent via email.
- Daily backlog IT OPS team
- Totals for each team and an overall count.
- Weekly Closed and opened IT OPS Team
- Totals for each team and an overall count.
- Weekly Individual performance per Team
Our IT OPS team includes the following Queues
- IT Support
- IT System Admin
- IT Telecom
- IT Network.
We created reports for all of the above requests and since we make the owner of any Incident the team queue this made the reports fairly easy to create. Note in the SQl below how we take the owned by worker id and use the team queue numbers.
Example of the SQL for Daily backlog:
select distinct count(T0.[workitem_number]) as '# Incidents Backlog',T0.[owned_by_worker_full_name] AS Team FROM [HD_workitem_current_view] T0 WHERE workitem_owned_by_worker_id in (136,138,132,21,134) AND T0.[workitem_status_lookup_value] < > 'Closed' GROUP BY T0.[owned_by_worker_full_name] Union select distinct count(T0.[workitem_number]) as ItemCount, 'Total Count' AS 'Total Count' FROM [HD_workitem_current_view] T0 WHERE workitem_owned_by_worker_id in (136,138,132,21,134) AND T0.[workitem_status_lookup_value] < > 'Closed'
The result of the report looks like this:
The next step is creating a task that will automate the email of these reports.
- Go to View>Task>Incident Resolution>Incidents>Helpdesk>Notification policy
- Click New Notification policy
- Provide name
- Under source - browse to the Report you desire
- Enable schedule - Choose a daily or weekly schedule to run this report.
- Under automated actions - choose email automated action
- Provide name, enable, Execute Only once, Provide email address you want to receive the report, provide subject and in the message ensure you type %Results% so the email has the results of the report.
The results of the email will look like this:
Repeat steps for all reports.
| License: | AJSL By clicking the download link below, you agree to the terms and conditions in the Altiris Juice Software License |
| Support: | User-contributed tools on the Juice are not supported by Altiris Technical Support. If you have questions about a tool, please communicate directly with the author by visiting their profile page and clicking the 'contact' tab. |






The Endpoint Management Community Blog is the perfect place to share short, timely insights including product tips, news and other information relevant to the Endpoint Management community. Any authenticated Connect member can contribute to this blog.
Comments 1 Comment • Jump to latest comment
See also referential information available in there:
KB 34994
KB 34996
Also
Enviorments
should be Environment perhaps? ;-)
~Pascal @ Kotte.net~ Do you speak French? Et utilisez Altiris: venez nous rejoindre sur le GUASF
Would you like to reply?
Login or Register to post your comment.