Venice
Product::Update
 
Updates a Production 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.
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
CreateProduct
SeekBySysNum
 
Samples
 
C++
 
// Update the last inserted record using the dialog
if (pProduct->SeekBySysNum (smLast, 0))
    pProduct->Update (umDialog);

C#
 
// Update the last inserted record using the dialog
if (oProduct.SeekBySysNum (eSeekMode.smLast, 0))
    oProduct.Update (eUpdateMode.umDialog);

VBS
 
' Update the last inserted record using the dialog
If oProduct.SeekBySysNum(smLast, 0) Then
    Call oProduct.Update(umDialog)
End If

VB.NET
 
' Update the last inserted record using the dialog
If oProduct.SeekBySysNum(eSeekMode.smLast, 0) Then
    oProduct.Update(eUpdateMode.umDialog)
End If