Skip to main content

system.mes.productionOrder.getProductionOrderPropertyValue

Description

Retrieves a Production Order Property Values record by its specified ID.

Syntax

system.mes.productionOrder.getProductionOrderPropertyValue(id)

Parameters

ParameterTypeDescription
idString (ULID)The ULID of the production order property value to retrieve.

Returns

Returns a JSON representation of the production order property value. Returns nothing if no production order property value is found.

NameTypeDescription
productionOrderIdString (ULID)The ULID of the production order.
propertyIdString (ULID)The ULID of the production order property.
dataTypeStringThe data type of the property value. Must be the same as the data type of the property.
valueMixedThe value assigned to the property value if none is provided. The type is mixed as it depends on what dataType is.
idString (ULID)The ULID of the production order property value (optional, for updating an existing property).
notesStringNotes related to the production order property value.
enabledBooleanIndicates if the property value is active and enabled.
spare1StringAdditional field for user-defined context.
spare2StringAdditional field for user-defined context.
spare3StringAdditional field for user-defined context.

Code Examples

# Retrieve a production order property value by ID
property_value = system.mes.productionOrder.getProductionOrderPropertyValue('01JQ2AN7CQ-MWR6A9M0-FQSEAHTJ')

# Output the production order property value
print(property_value)