BatchServicesUpdateWorkOrderLineItems Method |
Creates or updates the line items associated with a particular material purchase order
(represented by a
WorkOrder of type ReceivingOrder). Any existing line items
will be deleted when this method is called, and replaced by the specified line items.
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 UpdateWorkOrderLineItems(
Guid sessionId,
Guid orderId,
OrderLineItem[] lineItems
)
Public Sub UpdateWorkOrderLineItems (
sessionId As Guid,
orderId As Guid,
lineItems As OrderLineItem()
)
public:
virtual void UpdateWorkOrderLineItems(
Guid sessionId,
Guid orderId,
array<OrderLineItem^>^ lineItems
) sealed
abstract UpdateWorkOrderLineItems :
sessionId : Guid *
orderId : Guid *
lineItems : OrderLineItem[] -> unit
override UpdateWorkOrderLineItems :
sessionId : Guid *
orderId : Guid *
lineItems : OrderLineItem[] -> unit
Parameters
- sessionId
- Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - orderId
- Type: SystemGuid
The 128-bit unique identifier of the WorkOrder (Id property) to which these line items should be applied. - lineItems
- Type: FactoryLogix.xTend.DataObjectsOrderLineItem
A list of OrderLineItems to be applied to the WorkOrder
Exceptions See Also