How to integrate BI Publisher report converted from Reports 6i with Oracle forms10g.
I am trying find methods to call BI Publisher report from Oracle forms 10g. following is the part of the code we used for Reports 6i.
set_report_object_property(repid, REPORT_SERVER, v_report_server);
set_report_object_property(repid, REPORT_DESTYPE, CACHE);
set_report_object_property(repid, REPORT_DESFORMAT, 'PDF');
-- Submit report to run on report server
v_rep := run_report_object(repid);
message('Submitting Report :' || v_rep);
set_alert_property('SUBMIT_REPORT',ALERT_MESSAGE_TEXT,'Submitted Report Job :'|| substr(v_rep,11));
v_alert_id := show_alert('SUBMIT_REPORT');
-- Wait until reports has completed