Sales::Insert (Interface: Sales)
 
Inserts a Sales Document.
 
void Insert (
    enum eInsertMode eInsertMode
)
 
Parameters
eInsertMode
[in] A value of the 'eInsertMode' enumeration.
 
Remarks
A document can only be inserted directly using the dialog (eInsertMode = imDialog or eInsertMode = imDialogFromData), other modes are not supported. If you want to insert a document without user interface, you can use the Import method or the PrepareDocument method. For more information, see 'Handling accounting documents using the SDK'.
 
See Also
CreateSales
Init
 
Samples
 
C++
 
// Insert a new record using the dialog, initially filled with the default values
pSales->Init ();
pSales->Insert (imDialog);

C#
 
// Insert a new record using the dialog, initially filled with the default values
oSales.Init ();
oSales.Insert (eInsertMode.imDialog);

VBS
 
' Insert a new record using the dialog, initially filled with the default values
Call oSales.Init()
Call oSales.Insert(imDialog)

VB.NET
 
' Insert a new record using the dialog, initially filled with the default values
oSales.Init()
oSales.Insert(eInsertMode.imDialog)