Click or drag to resize

StationSetupServicesLoadItemByUID Method

Loads a material or tool (Item), identified by its UID (barcode) into a location on the specified Workstation.

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 LoadItemByUID(
	Guid sessionId,
	Guid operationId,
	string itemUID,
	SetupLocation location
)

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 realted Operation.
itemUID
Type: SystemString
The UID (barcode) of the Item to be loaded
location
Type: FactoryLogix.xTend.DataObjectsSetupLocation
A SetupLocation object representing the location where the Item will be loaded. If the UID of the location is known, only the UID property of the SetupLocation object need be populated. Alternatively, the WorkstationId and LocationName properties may be set to identify the specific location where the Item will be loaded.
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
ResourceNotFoundExceptionThrown if the WorkstationId property of the location parameter is not null and is invalid.
LocationNotFoundExceptionThrown if the location parameter does not identify a valid setup location.
ItemExceptionThrown if the itemId parameter is invalid.
StationSetupExceptionThrown if the item cannot be loaded.
See Also