Click or drag to resize

TrackingServicesRecordUpdatedItemData Method

Records an update to an existing Defect or Symptom. Only certain properties of these objects are updatable, such as Status and Comments. Other TrackedDataItem types may not be updated after they are recorded.

Namespace:  FactoryLogix.xTend.Production
Assembly:  FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.242.0.0 (8.242.0.0)
Syntax
public IEnumerable<TrackedDataItem> RecordUpdatedItemData(
	Guid sessionId,
	Guid transactionId,
	TrackedDataItem[] updatedDataItems
)

Parameters

sessionId
Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method.
transactionId
Type: SystemGuid
The transaction Id returned by the TransactionId property of the StartResult.
updatedDataItems
Type: FactoryLogix.xTend.DataObjectsTrackedDataItem
A list of pre-existing data objects of type Defect or Symptom representing the updated data to be recorded.

Return Value

Type: IEnumerableTrackedDataItem
A list of objects derived from TrackedDataItem representing the newly updated data. Should an error occur during data recording for a sub-set of the updatedDataItems, the returned list may be smaller than the original
Exceptions
ExceptionCondition
InvalidSessionExceptionThrown if the sessionId parameter is invalid.
TransactionNotFoundExceptionThrown if the transactionId parameter is invalid.
TrackedDataItemNotFoundExceptionThrown if any of the updatedDataItems do not exist in the system.
See Also