Skip to main content

system.mes.material.deletePropertyValues

Description

Deletes all Material Property Values records by the given IDs. This cannot delete any material property value with references to it.

Syntax

system.mes.material.deletePropertyValues(ids)

Parameters

ParameterTypeDescription
idsList<String> (ULID)List of IDs of the material property values to delete.

Returns

If successful, an ApiResponse Object is returned with the success bool set True. If unsuccessful, an IllegalArgumentException or ConstraintViolationException is thrown. If the property value that's being deleted has a reference, an ApiResponse Object is returned with details about the encountered error.

NameTypeDescription
successBooleanIndicates if the delete was successful.
messageStringThe reason why the deletion was successful or unsuccessful.
dataStringThe data associated with the deletion.
errorStringThe errors associated with the deletion.

Code Examples

# Delete all material property value by the given IDs
system.mes.material.deletePropertyValues(['01JRDP4APW-5D56ZQ8C-8949XKYT','01JRE81R3T-YEV59020-VHK88GPN'])