hello,
Can anyone please help me out with this issue. I have a filter item name P0_ISSUE in an interactive report. In this report, I have a Insert New button when clicked opens up a new popup window where the user enters the data and clicks the button CREATE at this point I call a javascript function to show an alert message/close popup window/refresh parent window and also process the pl/sql insert process. Below is the javascript function code.
function saveChanges()
{
doSubmit('CREATE');
alert('Successfully inserted the record. Click OK to close popup window and \n to refresh the parent window.');
window.close();//close the popup window
window.opener.doSubmit('REFRESH');
//call doSubmit function on the parent window to cause the page to refresh.
}
My issue is that i want to set the page zero item value to null P0_ISSUE before refreshing the parent window within the javascript function mentioned above. can anyone please suggest me any possible approach.
thanks,
orton