I have been trying to call my report from form through this code but neither it gives me any error nor its showing any report.
declare
report_id Report_Object;
report_job_id VARCHAR2(100);
BEGIN
report_id:= find_report_object('REPORT5');
report_JOB_ID:=run_report_object(report_id);
END;
Comm Mode : async
desctype : screen
Ex mode: runtime
file name : F:\Docs\Forms\vivek.rdf
report5 is the name of report object in the navigator.
What could be the problem??