Skip to main content

system.mes.material.deletePropertyValueFor

Description

Deletes a Material Property Values record given the material path and property name. This cannot delete a material property value with references to it.

Syntax

system.mes.material.deletePropertyValueFor(materialPath, propertyName)

Parameters

ParameterTypeDescription
materialPathStringThe path of the material.
propertyNameStringThe name of the property.

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 a material property value by the material path and property name
system.mes.material.deletePropertyValueFor('IRB/5391537510212', 'Density')