A script-enabled browser is required for this page to function properly.

FIND_REPORT_OBJECT Built-in

Description

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 .

Syntax

FUNCTION FIND_REPORT_OBJECT
(report_name VARCHAR2);

Built-in Type unrestricted procedure

Returns  REPORT_OBJECT

Enter Query Mode yes

Parameters

report_name 
 
Specifies the unique name of the report to be found.

FIND_REPORT_OBJECT Example

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