|
Updates a Financial Document. |
|
|
void Update ( enum eUpdateMode eUpdateMode ) |
|
|
Parameters | eUpdateMode | [in] A value of the 'eUpdateMode' enumeration. | | Remarks |
| A document can always be modified using the dialog (eInsertMode = imDialog or eInsertMode = imDialogFromData). The use of other modes is possible, but the changes will be limited to the data of the header. If you want to update a document without user interface, you can use the PrepareDocument method. For more information, see 'Handling accounting documents using the SDK'. |
| Updating a record destroys the object positioning that was previously established via a SeekBy-method and the GetNext/GetPrevious-methods. The results of calling GetNext or GetPrevious after an update are not guaranteed. |
|
|
See Also |
|
|
|
Samples |
|
|
C++ |
|
// Update the last inserted record using the dialog
if (pFinan->SeekBySysNum (smLast, 0))
pFinan->Update (umDialog);
|
|
|
C# |
|
// Update the last inserted record using the dialog
if (oFinan.SeekBySysNum (eSeekMode.smLast, 0))
oFinan.Update (eUpdateMode.umDialog);
|
|
|
VBS |
|
' Update the last inserted record using the dialog
If oFinan.SeekBySysNum(smLast, 0) Then
Call oFinan.Update(umDialog)
End If
|
|
|
VB.NET |
|
' Update the last inserted record using the dialog
If oFinan.SeekBySysNum(eSeekMode.smLast, 0) Then
oFinan.Update(eUpdateMode.umDialog)
End If
|
|