DBA Data[Home] [Help]

PACKAGE: APPS.GCS_ENTITIES_PKG

Source


1 PACKAGE GCS_ENTITIES_PKG AS
2 /* $Header: gcsentts.pls 120.1 2005/10/30 05:18:12 appldev noship $ */
3 --
4 -- Package
5 --   gcs_entities_pkg
6 -- Purpose
7 --   Package procedures for Consolidation Hierarchies
8 -- History
9 --   06-MAR-05	M Ward		Created
10 --
11 
12   --
13   -- Procedure
14   --   Add_To_Summary_Table
15   -- Purpose
16   --   Inserts rows into the gcs_entity_cctr_orgs table.
17   -- Arguments
18   --   p_entity_id		Entity for which the logic must be performed
19   -- Example
20   --   GCS_ENTITIES_PKG.Add_To_Summary_Table(...);
21   -- Notes
22   --
23   PROCEDURE Add_To_Summary_Table(p_entity_id NUMBER);
24 
25   --
26   -- Procedure
27   --   Load_Entities
28   -- Purpose
29   --   Loads the entities listed in the clob
30   -- Arguments
31   --   p_file_id	ID from gcs_xml_files for the clob
32   -- Example
33   --   GCS_ENTITIES_PKG.Load_Entities(myclob);
34   -- Notes
35   --
36   PROCEDURE Load_Entities(	x_errbuf	OUT NOCOPY VARCHAR2,
37 				x_retcode	OUT NOCOPY VARCHAR2,
38 				p_file_id	NUMBER);
39 
40   --
41   -- Procedure
42   --   Update_Entity_Orgs
43   -- Purpose
44   --   Updates the list of orgs for all entities.
45   -- Example
46   --   GCS_ENTITIES_PKG.Update_Entity_Orgs(entity_id);
47   -- Notes
48   --
49   PROCEDURE Update_Entity_Orgs(	x_errbuf	OUT NOCOPY VARCHAR2,
50 				x_retcode	OUT NOCOPY VARCHAR2);
51 
52 
53 END GCS_ENTITIES_PKG;