is there any way to create any table through Forms when forms are run and then dropping the same table everytime user click cancel button (when-button-pressed trigger).
Printable View
is there any way to create any table through Forms when forms are run and then dropping the same table everytime user click cancel button (when-button-pressed trigger).
Hi,
You can user FORMS_DDL built-in to execute any DDL script like:
FORMS_DDL('create table xyx (a number(5))');
&
FORMS_DDL('drop table xyx');