Hello: I have the following scenario in apex 20. I have a GI in which I select some rows and make the sum of one of its columns with a javascript process called when clicking on a button. After this process, it jumps to a modal page where it shows the sum previously calculated and requests other data. With that information I must insert records in two tables. I want to do it with PL / SQL. The query is when the submit of the modal page occurs.
Share
On the dialog page create a button which will submit the page.
Create a process in dialog page to write your PL/SQL code to insert the records.
when the user will click on the button the page will submit and the process will execute.
ok, thank you very much