Forms 12c - how to start the application in a new browser window and close the calling window
Hello
I have actually a forms 10g application started with a startpage.html located in the directory $ORACLE_HOME/forms/forms-start directory
<html>
<head>
<title>Start Application</title>
<SCRIPT type="text/javascript"
language="javascript"
src="/forms/forms-start/check_forms.js">
</SCRIPT>
<script type="text/javascript"
language="JavaScript"
src="/forms/forms-start/appl_window.js">
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body onload="javascript:replaceByFormsWindow('jobs2017');">
<!--<body onload="javascript:openFormsWindow('fsdemo');">-->
</body>
</html>
check_forms.js and appl_window.js are java script to start the application in an other browser window and closing the calling window.