Click or drag to resize

TrackingServicesLoadCarrier Method (Guid, Guid, NullableGuid, String)

Loads one or more Items into a carrier.

Namespace:  FactoryLogix.xTend.Production
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public void LoadCarrier(
	Guid sessionId,
	Guid carrierId,
	Nullable<Guid> transactionId,
	string[] itemUIDs
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
carrierId
Type: SystemGuid
The Id of the Item representing the carrier to be loaded.
transactionId
Type: SystemNullableGuid
An optional transaction Id returned by the TransactionId property of the StartResult.
itemUIDs
Type: SystemString
The text-based identifiers (UID's) of the Items to be loaded.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
ItemExceptionThrown if the carrierId parameter is invalid, or if any of the itemUIDs are invalid.
TransactionNotFoundExceptionThrown if the transactionId is not null and is invalid.
PositionExceptionThrown when the carrier has positions defined. Use the LoadCarrierPosition method instead.
CarrierLoadedExceptionThrown when the carrier is full or the number of UIDs will violate the carriers capacity.
See Also