Option to Alert Technicians for Unassigned Requests at recurring time intervals
Make use of the Request timer action feature present in our application
Navigate to : Admin >> Request Timer Action
Create a new timer action as the below configuration
Select After Rules and configure as below
Under Actions . Please configure as below and you can select the technicians you would like to receive a notification via mail when a ticket is unassigned for two hours
New to ADSelfService Plus?
Related Articles
How to Auto Share Request Upon Creation to All/Selected Technicians
NOTE: This script is supported only for builds below 11.3 This post describes the use of a python script to share requests to technicians specified in a list variable in the script, which can be generated from an SQL query. This script can be ...
Query to show unassigned time of a request and when its first assigned (MSSQL)
Tested in Build MSSQL (14306) Go to Reports-New Query Report and execute this query. MSSQL: SELECT wo.WORKORDERID "Request ID", aau.FIRST_NAME "Requester", LONGTODATE(wo.createdtime) "Created Time", LONGTODATE(wo.COMPLETEDTIME) "Completed Time", ...
Script to create worklog automatically based on technicians leave
You need to install Python to achieve the below. You can follow this link to install Python. (A) Create two incident additional fields with Date/time property as below: 1) Start Date 2) End Date Associate these additional fields in your Request ...
Query to get the Request First Assigned time
Use case: First Assigned Time is the number of minutes, hours, or days between when a requester submits a request and when was a support representative assigned to the Request. It indicates how long it is in an unassigned state. Working on Build: ...
Query to show the time taken between created time and first technician assigned time (PGSQL)
Tested in Build PGSQL (14300) or MSSQL (14306) Go to Reports-New Query Report and execute this query. PGSQL: SELECT wo.WORKORDERID "Request ID", aau.FIRST_NAME "Requester", LONGTODATE(wo.createdtime) "Created Time", LONGTODATE(wo.COMPLETEDTIME) ...