Click or drag to resize

TrackingServices.GetOperationsByBatchId Method

Retrieves a list of TrackingOperations belonging to the specified process flow and batch.

Namespace:  FactoryLogix.xTend.Production
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.252.0.0 (8.252.0.0)
Syntax
public IEnumerable<TrackingOperation> GetOperationsByBatchId(
	Guid sessionId,
	Guid batchId,
	Guid processFlowId
)

Parameters

sessionId
Type: System.Guid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
batchId
Type: System.Guid
The text-based unique identifier of a Batch.
processFlowId
Type: System.Guid
The text-based unique identifier of a ProcessFlow returned by the GetProcessFlows(Guid, String) method.

Return Value

Type: IEnumerable<TrackingOperation>
A list of the TrackingOperations related to the specified process flow.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
BatchNotFoundExceptionThrown if the batchId parameter is invalid.
ProcessFlowNotFoundExceptionThrown if the processFlowId parameter is invalid.
See Also