Hi, I have developed a package in a Creatio environment, now I want to lock this package, so other developers will not be able to modify it? How can I do this?
I would be grateful for any additional information on how locking of packages works and how it affects other packets that might have dependencies on such a packet, because the information I have been able to find in the creatio academy is limited.
Like
Hello!
Thank you for your question.
You can lock the package for Hotfix. By default, the package opens for hotfix only for 30 minutes, but you can change this value in the "Duration of package hotfix status" system setting.
More details about Package Hotfixes can be found in the following article on Creatio Academy.
You can execute the following SQL statement to lock the package:
update "SysPackage" set "InstallType" = 1 where "Name" = 'MyPackageName'
Ryan
Thank you for your answer Ryan Farley,
I have tried this, but when I compile the workspace it shows me a list of errors, example: Type 'Team' already defines a member called 'GetData' with the same parameter types.
Note that before the update of the field "InstallType", there are no compilation errors