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!

How to call a report from Forms 12c

ORCL_noviceOct 30 2018 — edited Oct 30 2018

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

Comments
Post Details
Added on Oct 30 2018
1 comment
4,694 views