OCLOperators OnUpdate
(Created page with "OnUpdate is called just before the onbject is saved to database. Here you can do things needed on every save operation. '''Please note!''' You can't create new objects from...")
 
No edit summary
Line 12: Line 12:
   false  
   false  
  endif  
  endif  
See more: [[Acting on object changes]]
See more: [[Acting on object changes]], [[OCLOperators IsDirty|IsDirty]]

Revision as of 11:53, 17 July 2021

OnUpdate is called just before the onbject is saved to database. Here you can do things needed on every save operation.

Please note!

You can't create new objects from within then OnUpdate action. That will leave the newly created object unsaved.

For example, in the method body for OnUpdate set this ocl:

if self.existing then -- This avoids touching the object if it has been deleted  
  self.ChangeTime:=DateTime.Now; 
  false 
else  
  false 
endif 

See more: Acting on object changes, IsDirty

This page was edited 74 days ago on 02/10/2024. What links here