User Tools

Site Tools


saveoninsertaction_execute_insert_record_activity_and_remain_active_.htm
Navigation:  ABC Library Reference > WindowManager > WindowManager Methods >====== SaveOnInsertAction(execute insert record activity and remain active) ====== Previous pageReturn to chapter overviewNext page

SaveOnInsertAction, VIRTUAL

blk2blue.jpg

The SaveOnInsertAction method performs the necessary database insert operations when called. SaveOnInsertAction returns Level:Benign to indicate a successful insert operation.

Implementation:

The SaveOnInsertAction method is called by the TakeCompleted method when Request is set to SaveRecord and OriginalRequest is set to InsertRecord.

Return Data Type:     BYTE

Example:

WindowManager.TakeCompleted PROCEDURE

 CODE

 SELF.SaveHistory()

 CASE SELF.Request

 OF InsertRecord

   RETURN SELF.InsertAction()

 OF ChangeRecord

   RETURN SELF.ChangeAction()

 OF DeleteRecord

   RETURN SELF.DeleteAction()

 OF SaveRecord

    CASE SELF.OriginalRequest

    OF InsertRecord

       RETURN SELF.SaveOnInsertAction()

    OF ChangeRecord

       RETURN SELF.SaveOnChangeAction()

    END

 END

 RETURN Level:Benign

See Also:     TakeCompleted , Request

saveoninsertaction_execute_insert_record_activity_and_remain_active_.htm.txt · Last modified: 2021/04/15 15:57 by 127.0.0.1