I use
open_from('b');
in WHEN-BUTTON-PRESSED
trigger for open form B
from form A
.
how to close form A
when I open form B
by using WHEN-BUTTON-PRESSED
in oracle form builder?
I use
open_from('b');
in WHEN-BUTTON-PRESSED
trigger for open form B
from form A
.
how to close form A
when I open form B
by using WHEN-BUTTON-PRESSED
in oracle form builder?
use new_form
Built-in instead of open_form
.
new_form
will Exits the current form and enters the indicated form.
PROCEDURE NEW_FORM (
formmodule_name VARCHAR2,
rollback_mode NUMBER,
query_mode NUMBER,
data_mode NUMBER,
paramlist_name VARCHAR2);
Where:
formmodule_name
rollback_mode
query_mode
data_mode
paramlist_name
simple example:
NEW_FORM ('FORM_NAME', full_rollback, query_only, no_share_library_data, p_id);
try this:
or
By using call_form it will hide the form A and then display B and when user will exit from B then A will be active.