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 ADSelfService Plus?

                    • Related Articles

                    • Script for hiding an option "Show this note to Requester" while adding Notes - For Technician Login

                      Compatible for 10500 Build * Stop Servicedeskplus-msp application service. * Navigate to [SDP_MSP-Home] > custom > scripts take a backup of existing CustomScripts.js file. * Use the attached CustomScripts.js file and replace it under [SDP_MSP-Home] > ...
                    • Query to show roles assigned to a technician with created date, status and department name (MSSQL & PGSQL)

                      Tested in builds from PGSQL (14300) or MSSQL (14306) Query: select auser.first_name as "TECHNICIAN", max(sd.employeeid) as "Employee ID", longtodate(auser.createdtime) as "Creation Date", STRING_AGG (arole.name, ',') "Current Assigned Role", ...
                    • 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 ...
                    • 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: ...