GetLotRelationshipGraph response message
- Last UpdatedSep 06, 2023
- 1 minute read
This is an example of the structure of a GetLotRelationshipGraph response message.
<GetLotRelationshipGraphResponse>
< Context>
<LotId/>
</Context>
<Nodes>
<Node>
<LotId/>
<Lot/>
<Material/>
<WorkCenter/>
</Node> …
</Nodes>
<Edges>
<Edge>
<FromLotId/>
<ToLotId />
</Edge>
</Edges >
</GetLotRelationshipGraphResponse>
Request parameters: Context section
Reports the context and location of original request; gives contextual information that aids in reading the response results.
< Context>
<LotId/>
< /Context>
|
Parameter |
Description |
|---|---|
|
LotId |
Reports the Lot ID. |
Request parameters: Nodes section
Contains the subset of nodes.
< Nodes >
<Node>
< LotId/>
< Lot/>
< Material/>
< WorkCenter/>
</Node>
< /Nodes>
|
Parameter |
Description |
|---|---|
|
Node |
Contains the returned data for each node. |
|
LotId |
Returns the internal lot ID of the related lot. |
|
Lot |
Returns the external lot identifier from movement expression or wizard. |
|
Material |
Returns the material of the related lot. Material.Coal |
|
WorkCenter |
Returns the workcenter of the related lot. |
Request parameters: Edges section
Contains the subset of edges.
< Edges >
<Edge>
<FromLotId/>
<ToLotId />
</Edge>
< /Edges >
|
Parameter |
Description |
|---|---|
|
Edge |
Contains the returned data for each edge. An edge is a line connecting two nodes. |
|
FromLotId |
The LotId of the node that starts the line (edge). |
|
ToLotId |
The LotId of the node that ends the line (edge). |