Using FND_FUNCTION.EXECUTE with query only mode
648469Aug 21 2008 — edited Aug 22 2008Hi 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?