Fires whenever Oracle Forms would normally issue a database commit statement to finalize a transaction. By default, this operation occurs after all records that have been marked as updates, inserts, and deletes have been posted to the database.
The default COMMIT statement that Oracle Forms issues to finalize a transaction during the Post and Commit Transactions process.
Definition Level form
SELECT statements, PL/SQL, unrestricted Built-ins
Enter Query Mode no
Aborts Post and Commit processing
Post and Commit Transactions
BEGIN
IF Get_Application_Property(DATA_SOURCE) = 'ORACLE' THEN
Commit_Form;
ELSIF form_fatal OR form_failure THEN
raise form_trigger_failure;
END IF;
/*
** Otherwise, no action is performed
*/
END;