Query
Survey responses for the past 7 days with response time filtered.
SELECT wo.WORKORDERID AS "Request ID", wo.TITLE AS "Request Title", ad.org_name AS "Account", srm.RESULT AS "Rating %", ti.FIRST_NAME AS "Technician", longtodate(srm.responsetime) AS "Survey Responded Date", srcmt.COMMENTTEXT AS "Comments", (select ...
Query to Pull out Login and LogOut History and to Find User Status
Purpose To generate the report which contains Login and LogOut History of the users and to find out the user status currently. Query 1 Below query provides the users login and logout history of the users. SELECT au.first_name as ...
Query to Pull out Login Hours
Purpose To generate the Total Login Hours per Technician. Query : select ai as "Account ID", tn as "Technician Name ( First Name )", lh as "Login hours", LONGTODATE(llt) as "Last Login Time", ln as "Login Name", domain as "Domain", email as ...