Unable to set Priority field post the user downgrades from Enterprise Edition to Professional Edition License

Unable to set Priority field post the user downgrades from Enterprise Edition to Professional Edition License

If you downgrade from Enterprise Edition to Professional Edition license, then the Priority matrix or some more features will be disabled.

In case, PriorityMatrix is disabled, then the user cannot modify the Priority field from requests itself.

So we need to execute the below query to edit the same :

update globalconfig set paramvalue='true' where category='PriorityMatrix'

Once executed, Just save the SSP (Admin -> Self-Service Portal settings once, here restart is not necessary). Now users can edit the priority.




                  New to ADSelfService Plus?

                    • Related Articles

                    • Priority Matrix option not present in Professional Edition

                      Impact and Urgency options are only available in the Enterprise Edition of SDP MSP. Priority Matrix will come into place only when we set the Impact and Urgency of a ticket. Since Impact and Urgency is not present in the Professional Edition, the ...
                    • How to set the requester field as logged in user

                      Go to Admin >> Field and Form Rules >> Create a rule with the below script var user = { name:$CS.getLoggedInUserLoginName(), id:$CS.getLoggedInUserId() }; $rf.setFieldValue('requester',user);
                    • ADMP Integration - How to automate AD user creation

                      This post described the use of a python script to automate AD user creation from request. This script can be configured under Request custom triggers and you will find more information about this here. Integrating ServiceDesk Plus with ADManager Plus ...
                    • How to populate user names in a request additional field

                      This sample script is to populate both technician and requester names in a request additional field Use Case: Populate all user name in a request additional field. Execution Steps:  1.  Create a new 'Single Line' additional field and add them in the ...
                    • How to set due by time in a request with value from a date time additional field.

                      This python script is used to set the due by date in the request based on the value that is set in a date additional field.This is performed using apis for updating a request. UseCase: Request due by time will be set based on Incident / Service ...