DBA Data[Home] [Help]

PACKAGE: APPS.GCS_DYN_EPB_DATATR_PKG

Source


1 PACKAGE GCS_DYN_EPB_DATATR_PKG AS
2 /* $Header: gcsdynepbtrs.pls 120.3 2007/12/13 11:52:12 cdesouza noship $ */
3 
4 
5   -- bugfix 5569522: Added p_analysis_cycle_id
6   -- Procedure
7   --   Gcs_Epb_Tr_Data
8   -- Purpose
9   --   Transfer data from FEM_BALANCES to FEM_DATA11
10   -- Arguments
11   --   errbuf:             Buffer to store the error message
12   --   retcode:            Return code
13   --   p_hierarchy_id      GCS Hierarchy for which data needs to be transferred
14   --   p_balance_type_code ACTUAl or AVERAGE
15   --   p_period_name       Period name
16   --   p_hierarchy_obj_def_id  Line Item hierarchy identifier
17   --   p_analysis_cycle_id     Analysis Cycle ID.
18   -- Example
19   --
20   -- Notes
21   PROCEDURE Gcs_Epb_Tr_Data (
22                 errbuf       OUT NOCOPY VARCHAR2,
23 		retcode      OUT NOCOPY VARCHAR2,
24 		p_hierarchy_id          NUMBER,
25 		p_balance_type_code     VARCHAR2,
26 		p_cal_period_id         NUMBER,
27         p_analysis_cycle_id     NUMBER );
28 
29 
30 
31   -- bugfix 5569522: Added procedure
32   -- Procedure
33   --   submit_business_process()
34   -- Purpose
35   --   Called by execute_consolidation to launch the business process after the
36   --   Consolidation process is completed.
37   -- Arguments
38   --    errbuf:              VARCHAR2 Buffer to store the error message
39   --    retcode:             VARCHAR2 Return code
40   --	p_analysis_cycle_id  NUMBER   Analysis Cycle ID
41   --	p_cal_period_id	     VARCHAR2 Calendar Peirod ID
42 
43   PROCEDURE	submit_business_process	(
44                          errbuf    OUT NOCOPY VARCHAR2,
45                     	 retcode   OUT NOCOPY VARCHAR2,
46                          p_analysis_cycle_id  IN NUMBER,
47   						 p_cal_period_id      IN VARCHAR2);
48 
49 
50 END GCS_DYN_EPB_DATATR_PKG;