DocumentCreateAdjustmentDocument Method |
Creates an adjustment document that doesn't adjust anything. Can be modified and saved.
Namespace:
Aloe.EnterpriseOne.Model.General
Assembly:
Aloe.EnterpriseOne.Model (in Aloe.EnterpriseOne.Model.dll) Version: 20.1.3.5
Syntaxpublic Document CreateAdjustmentDocument(
IEnumerable<EntityObject> childObjects = null,
IDictionary<EntityObject, EntityObject> pairs = null
)
Public Function CreateAdjustmentDocument (
Optional childObjects As IEnumerable(Of EntityObject) = Nothing,
Optional pairs As IDictionary(Of EntityObject, EntityObject) = Nothing
) As Document
public:
Document^ CreateAdjustmentDocument(
IEnumerable<EntityObject^>^ childObjects = nullptr,
IDictionary<EntityObject^, EntityObject^>^ pairs = nullptr
)
member CreateAdjustmentDocument :
?childObjects : IEnumerable<EntityObject> *
?pairs : IDictionary<EntityObject, EntityObject>
(* Defaults:
let _childObjects = defaultArg childObjects null
let _pairs = defaultArg pairs null
*)
-> Document
Parameters
- childObjects (Optional)
- Type: System.Collections.GenericIEnumerableEntityObject
The child objects to duplicate. - pairs (Optional)
- Type: System.Collections.GenericIDictionaryEntityObject, EntityObject
A dictionary to collect original-copy pairs.
Return Value
Type:
Document
See Also