ItemServicesSplitItem Method |
Divides the specified
Item into two identical
Items.
The sum of quantity of the two
Items will equal the quantity of the orignal item.
Namespace:
FactoryLogix.xTend.Logistics
Assembly:
FactoryLogix.xTend.API (in FactoryLogix.xTend.API.dll) Version: 8.245.0.0 (8.245.0.0)
Syntax public Item SplitItem(
Guid sessionId,
Guid itemId,
double newItemQuantity
)
Public Function SplitItem (
sessionId As Guid,
itemId As Guid,
newItemQuantity As Double
) As Item
public:
virtual Item^ SplitItem(
Guid sessionId,
Guid itemId,
double newItemQuantity
) sealed
abstract SplitItem :
sessionId : Guid *
itemId : Guid *
newItemQuantity : float -> Item
override SplitItem :
sessionId : Guid *
itemId : Guid *
newItemQuantity : float -> Item
Parameters
- sessionId
- Type: SystemGuid
The session identifier that was returned by the Connect(String, String, String, String, String) method. - itemId
- Type: SystemGuid
An Item object representing the new item to be processed. - newItemQuantity
- Type: SystemDouble
The quantity for the newly created Item. This quantity will be subtracted
from the original Item's quantity.
Return Value
Type:
ItemAn
Item object representing the newly created
Item that was split from the
Item identified by the itemId parameter.
Exceptions See Also