PackoutServicesUnpackItem Method |
Unpacks (removes) an
Item from a cotainer (box).
Namespace:
FactoryLogix.xTend.Production
Assembly:
FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.245.0.0 (8.245.0.0)
Syntax public void UnpackItem(
Guid sessionId,
PackingListItem listItem,
string containerUID,
string itemUID
)
Public Sub UnpackItem (
sessionId As Guid,
listItem As PackingListItem,
containerUID As String,
itemUID As String
)
public:
virtual void UnpackItem(
Guid sessionId,
PackingListItem^ listItem,
String^ containerUID,
String^ itemUID
) sealed
abstract UnpackItem :
sessionId : Guid *
listItem : PackingListItem *
containerUID : string *
itemUID : string -> unit
override UnpackItem :
sessionId : Guid *
listItem : PackingListItem *
containerUID : string *
itemUID : string -> unit
Parameters
- sessionId
- Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - listItem
- Type: FactoryLogix.xTend.DataObjectsPackingListItem
An object representing the item to be unpacked. - containerUID
- Type: SystemString
The text-based unique identifer (UID) of the container (represented by an Item object) into which the specified Item will be packed. - itemUID
- Type: SystemString
The text-based unique identifier of the Item that will be packed into the container.
Exceptions Exception | Condition |
---|
InvalidSessionException | Thrown if the sessionId parameter is invalid. |
PackingException | Thrown if anything goes wrong during the packing operation. The ErrorType property of
the exception contains details on the nature of the issue.
|
See Also