Multiple Interactive Reports in Single Page Oracle Apex 4.2

Introduction : 

In APEX 4.2, we can have only one IR on one APEX page and APEX won’t let us create more. So, we will have to create one IR each on two separate pages and then put them together in one. This has been done in the reference application using first and second pages. We have used the object HTML tag to get the report of the second page on the first page.

 

Implementation :

Step 1:

Create one interactive report in one page.

Step 2:

Create other interactive report in second page.

Step 3:

Create a HTML region in the first page with source as

<iframe src =”f?p=&APP_ID.:2:&SESSION.” height=600 width=600      frameborder=0>

</iframe>

Step 4:

 In security attributes, select Embed in Frames as Allow. Run the first page.

Conclusion: 

 This will help us to create multiple interactive report in single page .

Recent Posts