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.245.0.0 (8.245.0.0)
Syntax public IEnumerable<TrackedDataItem> RecordUpdatedItemData(
Guid sessionId,
Guid transactionId,
TrackedDataItem[] updatedDataItems
)
Public Function RecordUpdatedItemData (
sessionId As Guid,
transactionId As Guid,
updatedDataItems As TrackedDataItem()
) As IEnumerable(Of TrackedDataItem)
public:
virtual IEnumerable<TrackedDataItem^>^ RecordUpdatedItemData(
Guid sessionId,
Guid transactionId,
array<TrackedDataItem^>^ updatedDataItems
) sealed
abstract RecordUpdatedItemData :
sessionId : Guid *
transactionId : Guid *
updatedDataItems : TrackedDataItem[] -> IEnumerable<TrackedDataItem>
override RecordUpdatedItemData :
sessionId : Guid *
transactionId : Guid *
updatedDataItems : TrackedDataItem[] -> IEnumerable<TrackedDataItem>
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 See Also