Dear all,
I want to call reports from ORacle Forms 12c. I use the below code.
v_report_id:= FIND_REPORT_OBJECT(Rep_Obj); ----------------> Doubt?
SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE, SYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,CACHE);
SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT, 'PDF');
vc_rep_status := run_report_object(v_report_id, plid_report_param);
I have doubt in the above line. What is the format of Report_Object ? currently I have .rdf in the server path.
Can I give this .rdf file directly or do I need to run or compile and give ?
And I want .pdf format of some reports and excel files of some? Please explain hoe to get it as well..
Thanks