DBA Data[Home] [Help]

PACKAGE: APPS.GCS_FEM_HIER_SYNC_PKG

Source


1 PACKAGE GCS_FEM_HIER_SYNC_PKG AS
2 /* $Header: gcs_hier_syncs.pls 120.1 2005/10/30 05:18:35 appldev noship $ */
3 
4   --
5   -- Procedure
6   --   synchronize_hierarchy()
7   -- Purpose
8   --   To load the hierarchy from GCS to FEM
9   -- Arguments
10   -- p_hierarchy_id	Hierarchy to be pushed on to FEM
11   -- x_errbuf		error buffer
12   -- x_retcode		E-mail Text
13   --
14 
15    PROCEDURE synchronize_hierarchy
16      (  p_hierarchy_id 	 	IN NUMBER,
17         x_errbuf         	OUT NOCOPY      VARCHAR2,
18         x_retcode        	OUT NOCOPY      VARCHAR2);
19 
20   --
21   -- Procedure
22   --   entity_added()
23   -- Purpose
24   --   Accounts for the addition of an entity
25   -- Arguments
26   -- p_hierarchy_id						Hierarchy Identifier
27   -- p_cons_relationship_id		Consolidation Relationship
28 
29    PROCEDURE entity_added
30      (  p_hierarchy_id 		IN NUMBER,
31 	p_cons_relationship_id	IN NUMBER);
32 
33 
34 END GCS_FEM_HIER_SYNC_PKG;
35