DBA Data[Home] [Help]

PACKAGE: APPS.GCS_DIMENSION_SET_LINES_PKG

Source


1 PACKAGE GCS_DIMENSION_SET_LINES_PKG AS
2 /* $Header: gcsdmsls.pls 120.1 2005/10/30 05:17:32 appldev noship $ */
3 --
4 -- Package
5 --   gcs_dimension_set_lines_pkg
6 -- Purpose
7 --   Package procedures for the Dimension Set Lines Program
8 -- History
9 --   29-MAR-04	T Cheng		Created
10 --
11 
12   --
13   -- PUBLIC GLOBAL VARIABLES
14   --
15 
16   -- Holds fnd_global.user_id and login_id
17   g_fnd_user_id		NUMBER;
18   g_fnd_login_id	NUMBER;
19 
20   --
21   -- PUBLIC FUNCTIONS
22   --
23 
24   --
25   -- Procedure
26   --   Assign_Dimension_Combinations
27   -- Purpose
28   --
29   -- Arguments
30   --   p_dimension_set_id	Id of the dimension member set
31   -- Example
32   --   GCS_DIMENSION_SET_LINES_PKG.Assign_Dimension_Combinations
33   --                                 (errbuf, retcode, 111);
34   -- Notes
35   --
36   PROCEDURE Assign_Dimension_Combinations(
37     p_errbuf           OUT NOCOPY VARCHAR2,
38     p_retcode          OUT NOCOPY VARCHAR2,
39     p_dimension_set_id NUMBER);
40 
41 END GCS_DIMENSION_SET_LINES_PKG;