Skip to main content

system.mes.productionOrder.deleteProductionOrder

Description

Deletes a Production Orders record by its ID or name. This cannot delete a production order with references to it.

Syntax

system.mes.productionOrder.deleteProductionOrder(productionOrderIdOrName)

Parameters

ParameterTypeDescription
productionOrderIdOrNameStringThe ID or name of the production order to delete.

Returns

If successful, an ApiResponse Object is returned with the success bool set True. If unsuccessful, an InUseException, IllegalArgumentException or ConstraintViolationException is thrown. If the production order 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 production order by ID
system.mes.productionOrder.deleteProductionOrder('01JPMTA7K3-E8EHA4MD-7C304P4Z')