I am working in Oracle APEX. i want to make one form i-e A from two tables B & C .When i enter data in form A the data from formA should go to their respective Tables B & C.
I am working in Oracle APEX. i want to make one form i-e A
Share
A view and if necessary an INSTEAD OF trigger?
Creat a view of the data from tables B and C. Base your form on this. When you do your insert/update of the data you can either do so against the view (if its simple enough) or use an INSTEAD OF trigger to trap the update/insert and run the trigger. Google INSTEAD OF triggers.