DBA Data[Home] [Help]

PACKAGE: APPS.ADI_DISPLAY_REPORT

Source


1 PACKAGE ADI_display_report AUTHID CURRENT_USER AS
2 /* $Header: frmdisps.pls 120.0.12000000.3 2007/03/01 20:10:54 ghooker ship $ */
3 ----------------------------------------------------------------------------------------
4 --  PROCEDURE:    ADI_Display_Report                                                  --
5 --                                                                                    --
6 --  DESCRIPTION:  Displays and HTML report/form to the screen.  The HTML output may   --
7 --                a report published from the Request Center, or a stand alone file   --
8 --                which was unloaded (also from the Request Center).                  --
9 --                                                                                    --
10 --  MODIFICATIONS                                                                     --
11 --  DATE       DEVELOPER  COMMENTS                                                    --
12 --             CCLYDE     Initial Creation                                            --
13 --  16-FEB-00  CCLYDE     Added Package_Revision procedure to see if we can capture   --
14 --                        the revision number of the package during runtime.          --
15 --                              (Task:  3858)                                         --
16 --  16-MAY-00  GSANAP     Moved the $Header comment from the top to under             --
17 --                        the CREATE OR REPLACE PACKAGE stmt.                         --
18 --  17-MAY-00  CCLYDE     Created new procedure DisplayBannerFrame, which displays    --
19 --                        the report Banner in a separate frame.  (Task: 4179)        --
20 --  17-MAY-00  CCLYDE     Made the following procedures public:  DisplayApprovalFrame --
21 --                        and DisplayFile, so that they can be called and displayed   --
22 --                        into two different frames.     (Task: 4192)                 --
23 --  13-NOV-02  GHOOKER    Bugs 2279439, 2618782 Images not displayed in RM8.          --
24 --  13-NOV-02  GHOOKER    Procedures not required for RM8 have been stubbed out       --
25 ----------------------------------------------------------------------------------------
26    TYPE g_timeArray IS TABLE OF VARCHAR2(2) INDEX BY BINARY_INTEGER;
27    PROCEDURE DisplayFile (p_docId IN NUMBER);
28    PROCEDURE DisplayHTMLFile (p_ReportTitle   IN VARCHAR2 default '',
29                               p_TimeFrame     IN VARCHAR2 default '',
30                               p_ExpandedValue IN VARCHAR2 default '',
31                               p_StaticFile    IN VARCHAR2 default '',
32                               p_PageType      IN VARCHAR2 default '',
33                               p_displayBanner IN  VARCHAR2 default 'N');
34    PROCEDURE Show (p_ReportTitle    IN  VARCHAR2,
35            p_security       IN  VARCHAR2 default '',
36                    p_displayBanner  IN  VARCHAR2 default 'N');
37 END ADI_display_report;