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.245.0.0 (8.245.0.0)
Syntax public IEnumerable<PickedItem> GetPickedItems(
Guid sessionId,
Guid batchId,
string kitGroup
)
Public Function GetPickedItems (
sessionId As Guid,
batchId As Guid,
kitGroup As String
) As IEnumerable(Of PickedItem)
public:
virtual IEnumerable<PickedItem^>^ GetPickedItems(
Guid sessionId,
Guid batchId,
String^ kitGroup
) sealed
abstract GetPickedItems :
sessionId : Guid *
batchId : Guid *
kitGroup : string -> IEnumerable<PickedItem>
override GetPickedItems :
sessionId : Guid *
batchId : Guid *
kitGroup : string -> IEnumerable<PickedItem>
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:
IEnumerablePickedItemA list of
PickedItems representing the actual items picked for the specified
Batch and optionally the specified Kit Group.
Exceptions Exception | Condition |
---|
InvalidSessionException | Thrown if the sessionId parameter is invalid. |
NotFoundException | Thrown 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