Add notes when a technician is assigned

Add notes when a technician is assigned

Requirement:
Automatically add note in the ticket and consider it as a first response when a ticket is initially assigned to a technician.

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 addNote.txt and save it with a name.
  4. Modify the global function name in the script. 

  5. Configure custom trigger as below:



                  New to ADManager Plus?

                    New to ADSelfService Plus?

                      • Related Articles

                      • Report on Notes

                        This report gives an overview of all Notes added by the Technician. This report helps to find a specific word in the Notes, specific technician name etc..  To make any changes to a query, refer to the KB article below. ...
                      • Problem Notes

                        SELECT prob.PROBLEMID "Problem ID", prob.TITLE "Title", ownaaa.FIRST_NAME "Technician", longtodate(prob.REPORTEDTIME) "Reported Date", sdno.description "Notes" FROM Problem prob LEFT JOIN SDUser ownsd ON prob.OWNERID=ownsd.USERID LEFT JOIN AaaUser ...
                      • 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", ...
                      • 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 ...
                      • If the technician replies to the unassigned request, the ticket should be assigned to him.

                        Requirement: When a technician responds to an unassigned request, the unassigned ticket is assigned to the technician who responded. Steps to configure: 1.  Download the attached scripts.  Copy the contents into Request custom functions. 2.  Goto ...