SDeliv::WriteDocument (Interface: SDeliv)
 
Inserts or updates the prepared sales delivery.
 
void WriteDocument (
    enum eReportMode eReportMode,
    VARIANT_BOOL bAddTextLines,
    VARIANT_BOOL bExpandSets
)
 
Parameters
eReportMode
[in] A value of the 'eReportMode' enumeration.
bAddTextLines
[in] True if text lines must be added automatically after the article line, otherwise false.
bExpandSets
[in] True if set articles must be expanded automatically, otherwise false.
 
Remarks
When updating or duplicating a document (ePrepareAction is set to paUpdate or paDuplicate) set articles that were already expanded (parameter bExpandSets is set to true) or text lines that were already added (parameter bAddTextLines is set to true) will be expanded or added again!
 
See Also
CreateSDeliv
Handling invoicing documents using the SDK
PrepareDocument
CancelDocument
 
Samples
 
C++
 
// Change the document date of the current document to 17/09/2024
pSDeliv->PrepareDocument (paUpdate);

pSDeliv->pDocDate = COleDateTime (2024, 9, 17, 0, 0, 0).m_dt;

pSDeliv->WriteDocument (rmFullReport, VARIANT_FALSE, VARIANT_FALSE);

C#
 
// Change the document date of the current document to 17/09/2024
oSDeliv.PrepareDocument (ePrepareAction.paUpdate);

oSDeliv.pDocDate = new DateTime (2024, 9, 17);

oSDeliv.WriteDocument (eReportMode.rmFullReport, false, false);

VBS
 
' Change the document date of the current document to 17/09/2024
Call oSDeliv.PrepareDocument(paUpdate)

oSDeliv.pDocDate = #9/17/2024#

Call oSDeliv.WriteDocument(rmFullReport, False, False)

VB.NET
 
' Change the document date of the current document to 17/09/2024
oSDeliv.PrepareDocument(ePrepareAction.paUpdate)

oSDeliv.pDocDate = #9/17/2024#

oSDeliv.WriteDocument (eReportMode.rmFullReport, False, False)