I have buttons on my apex application that executes custom PL/SQL codes upon being clicked. They have names APPLY (Acknowledge) and CHANGE (Count Correct). I need to have it so that when APPLY is clicked, it redirects to the …
Is it possible to have JavaScript code in the PL/SQL block.
I want to execute the pl/sql block containing JavaScript code on submit in oracle Apex page process.
DECLARE
v_count NUMBER;
BEGIN
select count(*) into v_count
…
I built an interactive report based on View That Contains the master & details data, and I used Column Break To let the Report makes sense, and I used The master ID as a link to report that I built …