I have one submit button in apex application page. I need to create two pdf reports with one button press.
I have created two branching for one button but only one branching is working.
Then I tried creating one page process and one branching for the same button. but only branching is working
BEGIN
htp.init;
owa_util.redirect_url('f?p=&APP_ID.:0:&SESSION.'||':PRINT_REPORT=RepayORDShedLAy');
apex_application.stop_apex_engine;
end ;
How To solve this???