Hi everyone,
In order to deactivate core (out-of-the-box) processes, you need to unblock the ‘OpportunityManagement’ package in configuration, so all schemes that are included in it become editable. In one of your editable packages (Custom or Dev or whatever it is), you need to go to the ‘Scripts’ tab, click add, and add the following script:
update SysPackage
set Maintainer = 'Customer', InstallType = 0, IsLocked = 1, IsChanged = 1
where Name = 'OpportunityManagement'
After that, click ‘Validation’ and ‘Save’. Then, run the script.
Once you’re done, you will need to log out and log in again, clear your browser’s cache, open the necessary schema and go to the ‘Advanced properties’, then uncheck the ‘Active’ property. Now, you need to save and publish the process. If the system informs you that the changes can’t be published, this will mean that Redis server has to be flushed as well.
Like