Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Using FND_FUNCTION.EXECUTE with query only mode

648469Aug 21 2008 — edited Aug 22 2008
Hi guys, i needed your help.

I have to call a form from another one and passing some parameters.

I was using this : ->

DECLARE
parameter_lis ParamList;

begin

parameter_list:= create_parameter_list('input_parameters');
add_parameter(parameter_list:parameter.p_remission_key,TEXT_PARAMETER,'JE_UBS_REMISSION.REMISSION_KEY');
call_form('UBSTXREMDT',no_hide,do_replace,query_only,share_library_data,parameter_list);

end;

i did not test it yet, but in my company is standard to use the FND_FUNCTION.EXECUTE function to call another form but with that function i dont know how to set the query only mode.

Can you guys pls help me?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 19 2008
Added on Aug 21 2008
11 comments
17,976 views