Calling an Oracle Form and passing parameters from a jsp [message #381771] |
Mon, 19 January 2009 13:21 |
brianhargan
Messages: 3 Registered: January 2009
|
Junior Member |
|
|
Hi,
I'm trying to call an Oracle Form in a new window from a jsp and I need to pass parameters to query based on those parameters. I can open a form using the following in a javascript function:
var winLeft = ((document.body.clientWidth - window.width) / 2)+ window.screenLeft
var winTop = window.screenTop;
var attr = "left=" + winLeft + ",top=" + winTop + ", menubar=yes,resizable=yes,status,scrollbars=yes,width=820,height=630";
window.open(pFormsPath + "&form=" + pFormName, pTargetFrame, attr);
but any parameters included in the url such as ¶m=val aren't picked up by the Oracle Form. Any help or direction would be appreciated.
Thanks,
Brian
|
|
|
|