Hi,
Currently we have an issue when upgrading from obi 11g (11.1.1.9.1) to 12c (12.1.2.1.0). As part of 11g, there is an iframe on obiee dashboard which links to an external application (Oracle apex 4.2.4).
Post upgrade to 12C, we have default restriction to block external content.
I have gone through oracle documentation to enable the external content but I could not get the iframe to work. Below is the iframe code which we are using in the dashboard.
<script language="JavaScript">
function resize_iframe()
{
//alert ("resized");
document.getElementById('APEXiFrame').style.height = (document.getElementById('PageContentOuterDiv').style.height.replace('px', '') - 50) + 'px';
}
window.onresize=resize_iframe;
</script>
<IFRAME id = "APEXiFrame" onload="resize_iframe()"
style="margin: 0;
padding: 0;
height: 0px;
width: 100%;"
src="http://@{biServer.variables['APEX_SERVER_VAR']}/"
scrolling=""
frameborder="0">
</IFRAME>
Please note that I have provided the sample URL. Browser is Google Chrome
Could gurus please help me on this?
Thanks,
Sai
Message was edited by: bskumar.obiee