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

SRW.GET_REPORT_NAME built-in function

This function returns the file name of the report being executed.

Syntax


SRW.GET_REPORT_NAME (report_name); 

Parameters

Description

report_name

Is the variable in which you want to place the report name.

Example


function AfterPForm return boolean is
    my_var varchar2(80);
  BEGIN
    SRW.GET_REPORT_NAME(my_var); 
    SRW.MESSAGE(0,'Report Filename = '||my_var);
   RETURN (TRUE);
  END; 

See also

About the Reports Builder built-in package (SRW)

SRW built-in package