Click or drag to resize

KittingServicesGetPickedItems Method

Retrieves the items that were actually picked for a given Batch and optionally the given Kit Group.

Namespace:  FactoryLogix.xTend.Logistics
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public IEnumerable<PickedItem> GetPickedItems(
	Guid sessionId,
	Guid batchId,
	string kitGroup
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
batchId
Type: SystemGuid
The Id of the Batch whose picked items are to be retrieved.
kitGroup
Type: SystemString
The name of a specific Kit Group related to the specified Batch whose picked items are to be retrieved. This parameter is optional, if left NULL or blank, Picked Items are retrieved for the entire Batch.

Return Value

Type: IEnumerablePickedItem
A list of PickedItems representing the actual items picked for the specified Batch and optionally the specified Kit Group.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
NotFoundExceptionThrown if the batchId parameter does not correspond to valid Batch, or if a Kit Group is specified in the kitGroup parameter and it does not correspond to a valid Kit Group.
See Also