SRW.GET_REPORT_NAME
built-in functionThis function returns the file name of the report being executed.
SRW.GET_REPORT_NAME (report_name);
Parameters |
Description |
|
Is the variable in which you want to place the report name. |
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;
About the
Reports Builder built-in package (SRW
)
Copyright © 1984, 2005, Oracle. All rights reserved.