Click or drag to resize

PackoutServicesGetPackingList Method

Retreives a pre-configured PackingList based on the Operation (and optionally the Step) that has be configured for pack-out within a Process definition. If the stepId parameter is null, the PackingList associated with the first pack-out step of the Operation will be returned.

Namespace:  FactoryLogix.xTend.Production
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public PackingList GetPackingList(
	Guid sessionId,
	Guid operationId,
	Nullable<Guid> stepId,
	Nullable<Guid> batchId
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
operationId
Type: SystemGuid
The Id of the Operation that has beeen configured with a pack-out step.
stepId
Type: SystemNullableGuid
The optional Id of the Step that has been configured for pack-out within an Operation. This parameter is only necessary if more than one pack-out Steps have been configured for a single Operation,
batchId
Type: SystemNullableGuid
The optional Id of the Batch to be used to configure the PackingList. This parameter is only necessary for Configure To Order (CTO) type processes with configured PackingLists.

Return Value

Type: PackingList
A PackingList object containing a list of items that are necessary for pack-out, as well as other important information.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
OperationNotFoundExceptionThrown if the operationId parameter is invalid, or the stepId parameter is not null and is invalid.
BatchNotFoundExceptionThrown if the batchId property is not null and is invalid.
See Also