Click or drag to resize

MultiDocumentGenerationTParentDocument, TOrderItem, TSubDocumentSplitFunction Property

Gets the split function, which determines whether a sub-document is related to a parent line (according to the split condition).

Namespace:  Aloe.EnterpriseOne.Model.Core.Transformations
Assembly:  Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntax
public Func<TOrderItem, TSubDocument, bool> SplitFunction { get; }

Property Value

Type: FuncTOrderItem, TSubDocument, Boolean
The split function.
Remarks

The split function determines whether an order item could add a line in the specified fulfillment document. It is evaluated during generation of each order line against all previously created fulfillment documents.

  • When it returns true, new fulfillment lines, based on the current order item are created in the current fulfillment document.
  • When it returns false, new fulfillment lines, based on the current order item are created in another (or new) fulfillment document.
See Also