DBA Data[Home] [Help]

PACKAGE: APPS.GL_DAS_DB_PKG

Source


1 PACKAGE gl_das_db_pkg AS
2 /* $Header: gldefacs.pls 120.4 2005/05/05 02:03:34 kvora ship $ */
3 
4   --
5   -- Procedure
6   --   Insert_Super
7   -- Purpose
8   --   used to assign the definition to the Super User Definition Access Set.
9   -- History
10   --   10/15/02   C Ma           Created
11   -- Notes
12   --
13   PROCEDURE Insert_Super (
14                        P_Rowid       IN OUT NOCOPY VARCHAR2,
15                        P_Definition_Access_Set_Id  NUMBER,
16                        P_Object_Type               VARCHAR2,
17                        P_Object_Key                VARCHAR2,
18                        P_User_Id                   NUMBER,
19                        P_Login_Id                  NUMBER,
20                        P_Date                      DATE);
21 
22   --
23   -- Procedure
24   --   Insert_Default
25   -- Purpose
26   --   used to assign the definition to the default definition access sets
27   --   of the current responsibility.
28   -- History
29   --   10/15/02   C Ma           Created
30   -- Notes
31   --
32   PROCEDURE Insert_Default (
33                        X_Object_Type               VARCHAR2,
34                        X_Object_Key                VARCHAR2,
35                        X_User_Id                   NUMBER,
36                        X_Login_Id                  NUMBER,
37                        X_Date                      DATE);
38 
39 
40   --
41   -- Procedure
42   --   submit_req
43   -- Purpose
44   --   used to submit the definition access set flattening program.
45   -- History
46   --   10/15/02   C Ma           Created
47   -- Notes
48   --
49   FUNCTION Submit_Req RETURN NUMBER;
50 
51 END gl_das_db_pkg;