Click or drag to resize

TrackingServicesGetOperationsByBatchId 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.242.0.0 (8.242.0.0)
Syntax
public IEnumerable<TrackingOperation> GetOperationsByBatchId(
	Guid sessionId,
	Guid batchId,
	Guid processFlowId
)

Parameters

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

Return Value

Type: IEnumerableTrackingOperation
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