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
Syntaxpublic Func<TOrderItem, TSubDocument, bool> SplitFunction { get; }
Public ReadOnly Property SplitFunction As Func(Of TOrderItem, TSubDocument, Boolean)
Get
public:
property Func<TOrderItem, TSubDocument, bool>^ SplitFunction {
Func<TOrderItem, TSubDocument, bool>^ get ();
}
member SplitFunction : Func<'TOrderItem, 'TSubDocument, bool> with 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