The default rollback mode for the CLEAR_FORM, NEW_FORM, and EXIT_FORM procedures is TO_SAVEPOINT. Thus, the statements
CLEAR_FORM;
NEW_FORM('form_name');
EXIT_FORM;
are logically equivalent to
CLEAR_FORM(ask_commit, to_savepoint);
NEW_FORM('form_name', to_savepoint);
EXIT_FORM(ask_commit, to_savepoint);
Note: Oracle Forms interprets a ROLLBACK statement in a PL/SQL block as a CLEAR_FORM Built-in procedure with no parameters.