DBA Data[Home] [Help]

PACKAGE: APPS.GL_BIS_REPORTS_PKG

Source


1 PACKAGE gl_bis_reports_pkg AUTHID CURRENT_USER AS
2 /*  $Header: gluoarps.pls 120.2 2005/05/05 01:41:36 kvora ship $ */
3 --
4 -- Package
5 --   gl_bis_reports_pkg
6 -- Purpose
7 --   This package contains various BIS reports utilities.
8 -- History
9 --   07-13-99   K Chang		Created
10 --
11   ---
12   --- GLOBAL VARIABLES
13   ---
14 
15   G_SOB_ID		NUMBER := null;
16 
17 
18   -- Procedure
19   --   initialize
20   --
21   -- Purpose
22   --   Initialize set of book id
23   --
24   -- History
25   --   07-13-99   K Chang	Created
26   --
27   -- Arguments
28   --   sob_id NUMBER
29 
30   PROCEDURE initialize ( sob_id NUMBER);
31 
32   -- Procedure
33   --   get_sob_id
34   --
35   -- Purpose
36   --   Gets the Set of book ID
37   --
38   -- History
39   --   07-13-99   K Chang	Created
40   --
41   -- Arguments
42   --   none
43 
44   FUNCTION get_sob_id RETURN NUMBER;
45 
46 END gl_bis_reports_pkg;