Deleting a detail
Glossary Item Box
Introduction
To delete a custom detail in Creatio, you need access to the system configuration tools and its database.
Before you delete a custom detail, unlock the corresponding detail in the SVN storage.
First, delete the database records. Use the following script to delete a detail:
DECLARE @Caption nvarchar(max); SET @Caption = 'ToDelete'; DECLARE @UId UNIQUEIDENTIFIER; select @UId = EntitySchemaUId from SysDetail where Caption = @Caption delete from SysDetail where EntitySchemaUId = @UId
Replace the “ToDelete” value with the detail schema name, which you can view in the [Advanced settings] of the System Designer. After deleting data from the database, delete the custom detail schema in the [Configuration] section. The [Advanced settings] in the System Designer allow deleting the object of the deleted detail.