To Non-Mandate the reason for updating a request field

To Non-Mandate the reason for updating a request field

To Non-Mandate the reason for updating a request field, please use the below queries:


These queries will have to be executed in the Database:


select * from helpdeskdetails where displayname = 'portalname';

update globalconfig set paramvalue=false where parameter like 'IS_UPDATE_REASON_MANDATORY' and helpdeskid = <helpdeskid>;



Notes:

1. Replace portalname with the name of the portal 

2. Replace the <helpdeskid> with the ID from the select query

3. A restart of the Application is needed. 

                  New to ADSelfService Plus?

                    • Related Articles

                    • Ability to mandate the reason for field updates in requests using custom triggers

                      Use case: At times, technicians may not provide the reason for request fields update as technician reassign, groups, priority and so on. This script will alert the technicians to update the reason for these request field updates. Prerequisites: ...
                    • To make SLA mandatory while creating a service request

                      The steps mentioned below make the SLA selection mandatory for any service request creation. Tested in builds : 14000 and 14301. Script: if(!jQuery("#servicesla-selected").attr("data-association-id") || ...
                    • Update request additional field with Custom Request ID

                      Requirement: Each Organization's request ID format may differ. In the current model, replacing the existing request id with these is not possible; however, the same can be replaced in an additional field. Custom Format : Example: 202305221125001 ...
                    • Mark Request as Non-Billable

                      You can make use of Business Rules to set the Criteria as "Request Type is" (or any Criteria as per yours) and under Actions set "Mark Request as Non-Billable". So once the Request is marked as Non-Billable, the worklog added under that request will ...
                    • FAFR - How to mandate field when SLA is overdue

                      1. Under Admin >> Incident Template >> Edit the template in question 2. Choose field and form rules and apply the below script On Form Submit var duebyDate = $CS.getValue("DUEBYDATE"); var currentDate = new Date(); if(currentDate>duebyDate) { ...