Returns the report_id for a specified report. You can use this ID as a parameter for other Built-ins, such as RUN_REPORT_OBJECT .
FUNCTION FIND_REPORT_OBJECT
(report_name VARCHAR2);
Built-in Type unrestricted procedure
Returns REPORT_OBJECTEnter Query Mode yes
DECLARE
repid REPORT_OBJECT;
v_rep VARCHAR2(100);
BEGIN
repid := find_report_object('report4');
v_rep := RUN_REPORT_OBJECT(repid);
....
END;
Referencing Oracle Forms Objects by Internal ID