FRM-40010 : cannot read form [message #519795] |
Wed, 17 August 2011 00:20 |
chenny
Messages: 10 Registered: May 2010 Location: India
|
Junior Member |
|
|
Hi!
created a form which is calling 3 different forms based on the radio button. The main form say 'MAIN.fmb' has the code
" execute_query " in when-radio-changed trigger and the following:
if :BLOCK.RADIOGRPNAME = '1'
then open_form('XX');
else if :BLOCK.RADIOGRPNAME = '2'
then open_form('YY');
else if :BLOCK.RADIOGRPNAME = '3'
then open_form('ZZ');
end if;
end if;
end if;
in the pre-query trigger of the control block where XX,YY,ZZ are the three corresponding forms.
While clicking the radio button, 'm getting the error FRM-40010:cannot read form XX.fmb
the .fmb, .fmx both exist in the location and individually all the forms are working fine but while being called from MAIN is showing this error.
Please suggest the resolution of the same.
Regards,
AD
|
|
|
|
Re: FRM-40010 : cannot read form [message #521370 is a reply to message #519842] |
Mon, 29 August 2011 05:34 |
chenny
Messages: 10 Registered: May 2010 Location: India
|
Junior Member |
|
|
Sorry for reverting so late..you are right. specifying the fmx path did solve it. As I was doing it in a test instance hence, specifying the 'function' name (fnd_function.execute (FUNCTION_NAME=>'functionname', OPEN_FLAG => 'Y')actually solved the prob and it's independent of the path too.
Thanks. i'm working on EBiz R12 on 10g database.
Regards,
|
|
|