How to restrict adding of notes by users

How to restrict adding of notes by users

1. Go to Admin > Page Scripts:
2. Create New Rule > configure if it needs specifically for Technicians or Requesters or All Users and set the Event Conditions as per your requirement
3. Under Actions > Execute Script > Make use of the below script:

$CS.hideElement("addnotes");jQuery("[data-id=add-note]").hide(); 

Sreenshot for your reference:


                  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 list out the notes added to the tickets

                      QUERY: To list of the notes added to the tickets  while generating report report SELECT  ti.FIRST_NAME AS "Support Rep", wo.WORKORDERID AS "Request ID", longtodate(wo.CREATEDTIME) AS "Created Time", wo.TITLE AS "Subject", aau.FIRST_NAME AS "Contact", ...
                    • 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. ...
                    • Some errors related to Python when trying to run a script in SDP MSP

                      Case 1: We could see cases where users come across the below error when trying to execute scripts. This happens if the requests library is not imported.   In order to import the requests library in Python, follow the steps below: 1. Open cmd as admin ...
                    • 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 ...