Had a client interested in tracking the Approvals Requests made from requests in ManageEngine ServiceDesk Plus the other day. They were interested in tracking the following information:

When the authoriser received the request for approval
When it was approved
How long it has taken the approver to action the request
What is the average time to approve
 
 
Now the Reports module in ManageEngine ServiceDesk Plus doesn’t currently support getting this type of information by using the report wizards so it requires a custom report.
 
The main database table of interest is ‘ApprovalDetails’ as this records all the approvals activity in ManageEngine ServiceDesk Plus.
 
Running ‘SELECT * FROM ApprovalDetails’ in the Query Report Editor of the Reports module yields the following output:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Now to get a useful report we’ll need to draw on some other tables. The data table ‘ApprovalStageMapping’ cross references if the ‘Approval_stageid’ is mapped to a current request in ManageEngine ServiceDesk Plus by means of the ‘workorderid’:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
The final data table of ‘ApprovalStage’ will provide us with details of when the approval request was raised; we already have the time it was approved, ‘Sent_date’, in the ‘ApprovalDetails’ table.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
The customer’s database was MS SQL so I managed to create the following query:
 
SELECT asm.workorderid “Request ID”, ad.email “Sent To”,
— used CASE statement to presnet meaningful text rather than a value
  CASE
     WHEN ad.stageid = 1 THEN ‘Stage 1’
     WHEN ad.stageid = 2 THEN ‘Stage 2’
     WHEN ad.stageid = 3 THEN ‘Stage 3’
     WHEN ad.stageid = 4 THEN ‘Stage 4’
     ELSE ‘Stage 5 and above’
  END as “Approval Stage”,
— these are date conversions for MS SQL, PostGreSQL and MySQL will differ
CONVERT(VARCHAR(20), dateadd(s,datediff(s,getutcdate(),getdate())+(aps.sent_date/1000),’1970-01-01 00:00:00′), 100) AS “Sent Date”,
CONVERT(VARCHAR(20), dateadd(s,datediff(s,getutcdate(),getdate())+(ad.action_date/1000),’1970-01-01 00:00:00′), 100) AS “Actioned Date”,
DATEDIFF(minute, dateadd(s,datediff(s,getutcdate(),getdate())+(aps.sent_date/1000),’1970-01-01 00:00:00′), dateadd(s,datediff(s,getutcdate(),getdate())+(ad.action_date/1000),’1970-01-01 00:00:00′)) as “Minutes taken to Respond”,
— used CASE statement to presnet meaningful text rather than a value
  CASE
     WHEN ad.statusid = 1 THEN ‘Requested’
     WHEN ad.statusid = 2 THEN ‘Approved’
     WHEN ad.statusid = 3 THEN ‘Denied’
     WHEN ad.statusid = 4 THEN ‘To be sent’
     ELSE ‘Unspecified’
  END as Status,
ad.comments “Approval Comments” FROM approvaldetails ad
— used RIGHT JOIN so we only pick up Requests with approvals, this includes service requests
RIGHT JOIN approvalstagemapping asm ON asm.Approval_stageid=ad.Approval_stageid
LEFT JOIN approvalstage aps ON aps.approval_stageid=ad.approval_stageid
— although the output does not show True and False values in SD+ report they do exist
— false indicates a previous approval request has been deleted
WHERE ad.isdeleted = ‘False’
ORDER BY asm.workorderid, ad.approvalid
–To use the above custom query cut and paste it into Reports->New Query Report
This gave an output as follows, I’ll let you calculate the average 😉
 
Thought I’d share as it might prove useful to others.
 
Enjoy!
 
 
 
This article is relevant to:
AnalyticsService Desk

You may be interested in these other recent articles

Security Advisory – Important Security Update For PAM360

19 June 2025

Product Name Affected Version(s) PAM360 7500 PAM360 MSP 7410 DetailsIn build 7410 of PAM360 MSP, ManageEngine rolled out an enhancement to granularly mask/unmask shared passwords…

Read more

The New Endpoint Central Integration for ServiceDesk Plus Cloud

30 May 2025

At Set3 Solutions, the award-winning UK partner of ManageEngine, we help clients unlock the full potential of their ManageEngine tools—whether it’s optimising service delivery or…

Read more

Latest Updates for ManageEngine Endpoint Central

27 May 2025

Discover the latest Endpoint Central updates, including new features, fixes, and enhancements.

Read more

Accelerating NetFlow Analyzer Availability on AWS: How Set3 Solutions Helped a Leading UK Retailer Move Forward

23 May 2025

At Set3 Solutions, we help UK businesses unlock the full value of ManageEngine—from licensing and deployment to long-term strategic advice. So when a leading UK…

Read more