Update method: WorklistEntry class
Syntax
Update()
Description
Use the Update method to update the worklist entry with any property values that have changed, and assign values to the associated record in the database. However, this method does not commit the changes to the record in the database. You must use the Save method to update the database.
Parameters
None.
Returns
A numeric value: 0 if update didn't complete successfully, nonzero if update completed successfully.
Example
If (&worklist.Update() <> 0) Then
&worklist.inststatus = "2" /* mark entry worked */
/* additional processing */
End-if;
Related Topics