FRM-41211:Integration error:SSL failure running another product
579729Nov 13 2009 — edited Nov 14 2009Hi
I have created a report 'as.rdf'
It required 3 parameters. I want to call this report from forms
Now I have created a report object in forms.
I have set the following property of the report objects
1. Filename to 'd:\fol1\as.rdf'
2. Execution Mode to 'Batch'
3. Communication Mode to 'Synchronous'
4. Report Destinatin Type to 'File'
5.Report Destination Name to 'd:\temp'
6. Report Destination Format to 'PDF'
Now I have written the following code on 'WHEN-BUTTON-PRESSED' trigger of a push button to call the report
List_id := Create_Parameter_List('input_params');
Add_Parameter(List_id, p_1',TEXT_PARAMETER,'value1');
Add_Parameter(List_id, 'p_2',TEXT_PARAMETER,'value2');
Add_Parameter(List_id, 'p_3',TEXT_PARAMETER,'value3');
repid := FIND_REPORT_OBJECT('as');
v_rep := RUN_REPORT_OBJECT(repid, 'input_params');
Destroy_Parameter_List(List_id);
when I click the push button it's giving me the following error
FRM-41211:Integration error:SSL failure running another product.
could you please give me a solution?
Thanks