which is calling form? which is form called in your case. When I press the button, I have the following error
frm-47027:Cannot add parameter 430543G-Query_find to parameter list FND-FORM_ARGS:invalid key specified.
here is my code
declare
v_params VARCHAR2(300);
v_download VARCHAR2(300); --NUMBER;
CURSOR c_check_download IS
select
xdv.DOWNLOAD_ID
from apps.XX_LICENSED_PRODUCTS_
where xl.LICENSE_ID=xlv.LICENSE_
and xlv.DOWNLOAD_ID =xdv.DOWNLOAD_ID
and xlv.PRODUCT_STATUS='Latest
and xl.license_number=:find_do
begin
open c_check_download;
fetch c_check_download into v_params;
close c_check_download;
fnd_function.execute(
function_name=>'URL_DOWNLOA
open_flag=>'Y',
session_flag=>'Y',
other_params=> v_params || 'G_QUERY_FIND="TRUE"' );
end;
I want to pass download_id to open block XX_downloads_v in Find_downloads block
Main Topics
Browse All Topics





by: MarkusIdPosted on 2009-03-12 at 02:46:45ID: 23866250
Hi,
ta'); d); pdata'); r_of_copie s',TEXT_PA RAMETER,'1 9');
s).
Well, in the calling form you create a parameter-list:
DECLARE
pl_id ParamList;
BEGIN
pl_id := Get_Parameter_List('tempda
IF NOT Id_Null(pl_id) THEN
delete_parameter_list(pl_i
END IF;
pl_id := create_parameter_list('tem
Add_Parameter(pl_id,'numbe
END;
In the form called you have the possibilty to enter expected parameters
(should be between object-groups and popup-menus in the
tree hierarchy). There you create a parameter (in this example
'number_of_copies'). In this form you can use the data as
:parameter.parametername (in this example :parameter.number_of_copie