Update status on Technician auto assign

Update status on Technician auto assign

Requirement:
Updating request status when a technician is assigned through technician auto assign.

Steps to configure:
  1. Goto Admin > Developer Space > Request Custom Functions > Global function > New > Paste the content from the attachment GF_4 - Configuration.txt and save it with a name.
  2. Update the URL and integration key in the script. 
    1. You can get the integration key under Admin > Integrations > Integration Key > New
    2. Please use an integration key with admin privilege, as there wont be any role related permission issues. 

    3. Update the integration key in the global function.
    4. https://help.servicedeskplus.com/api/rest-api.html$key

  3. Go to Admin > Developer Space > Request Custom Functions > Custom Actions > Paste the content from the TAAUpdateStatus.txt and save it with a name.
    1. Modify the below in the script:
      1. Global Function name\count
      2. Status Name
      3. Status Change Comments 
  4. Configure custom trigger as below to get invoked every time a request is created.



                  New to ADManager Plus?

                    New to ADSelfService Plus?

                      • Related Articles

                      • Technician

                        This report is used to find the Technician complete details.  SELECT AaaUser.USER_ID, AaaUser.FIRST_NAME "FullName", AaaLogin.NAME "LoginName", AaaLogin.DOMAINNAME "Domain", AaaContactInfo.EMAILID "Email", DepartmentDefinition.DEPTNAME "Department", ...
                      • How to update a request based on certain field values.

                        This post describes the use of a python script to update requests based on values in other fields ,in the same request.This action can be performed using  Custom Triggers. UseCase: There are three Levels setup in the application and there are 2 ...
                      • BR script to stop the request status update operation performed on a request that is not assigned with a technician.

                        This Sample Python Script is used to "negate" the request status update, if the request is not assigned with any technician. Usecase:  Consider a technician is trying to resolve a request that is not associated to any technician.  Any technician ...
                      • Technician group

                        This report is used to get the associated groups of the technicians. SELECT AaaUser.FIRST_NAME "FullName", (SDOrganization.NAME) "Site", (qd.queuename) "Group" FROM AaaUser LEFT JOIN UserDepartment ON AaaUser.USER_ID=UserDepartment.USERID LEFT JOIN ...
                      • Assign technician if they responds to an unassigned ticket - Notification Custom Function

                        Requirement: When a technician addresses an unassigned request, the corresponding ticket is automatically assigned to that technician. Steps to configure: 1. Download the attached scripts. Copy the contents into Notification custom functions. 2. Goto ...