Previous Topic

Next Topic

Inhoudsopgave

Book Index

List of operations

GET: /MachineOperationService/productionorders/operations?deptcode={department}&machgrpcode={capacitygroup}&machcode={machine}&empid={employee}

Several optional parameters are available in this call: department, capacity group, machine and employee can be used to filter the list of operations.

The result is a list of machine operations with the following schema:

<xs:schema xmlns:tns="Isah.Model.Poco" elementFormDefault="qualified" targetNamespace="Isah.Model.Poco" xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:complexType name="MachineOperations">

<xs:sequence>

<xs:element minOccurs="0" maxOccurs="unbounded" name="MachineOperation" nillable="true" type="tns:MachineOperation" />

</xs:sequence>

</xs:complexType>

<xs:element name="MachineOperations" nillable="true" type="tns:MachineOperations" />

<xs:complexType name="MachineOperation">

<xs:sequence>

<xs:element minOccurs="0" name="ClusterCode" nillable="true" type="xs:string" />

<xs:element minOccurs="0" name="LineNr" type="xs:short" />

<xs:element minOccurs="0" name="MachCode" nillable="true" type="xs:string" />

<xs:element minOccurs="0" name="ProdBOOLineNr" type="xs:short" />

<xs:element minOccurs="0" name="ProdHeaderOrdNr" nillable="true" type="xs:string" />

</xs:sequence>

</xs:complexType>

<xs:element name="MachineOperation" nillable="true" type="tns:MachineOperation" />

</xs:schema>