system.mes.material.deletePropertyValuesFor
Description
Deletes all Material Property Values records given the material path and property names. This cannot delete any material property value with references to it.
Syntax
system.mes.material.deletePropertyValuesFor(materialPath, propertyNames)
Parameters
Parameter | Type | Description |
---|---|---|
materialPath | String | The path of the material. |
propertyName | List<String> | The names of the properties. |
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.
Name | Type | Description |
---|---|---|
success | Boolean | Indicates if the delete was successful. |
message | String | The reason why the deletion was successful or unsuccessful. |
data | String | The data associated with the deletion. |
error | String | The errors associated with the deletion. |
Code Examples
# Delete all material property values by the material path and property names
system.mes.material.deletePropertyValuesFor('IRB/5391537510212', ['Density', 'Melting Point'])