DBA Data[Home] [Help]

PACKAGE: APPS.FII_COM_CC_DIM_MAPS_PKG

Source


1 PACKAGE FII_COM_CC_DIM_MAPS_PKG AS
2 /* $Header: FIICCMPS.pls 120.1 2005/10/30 05:05:41 appldev noship $ */
3 
4 
5 -- ***********************************************************************************
6 -- Package level variables
7 -- ***********************************************************************************
8 
9 
10  FIIDIM_Debug			BOOLEAN		:= FALSE;
11  FII_User_Id			NUMBER		:= NULL;
12  FII_Login_Id			NUMBER		:= NULL;
13  COMCCDIM_fatal_err		EXCEPTION;
14 
15 -- ************************************************************************************
16 -- Procedure
17 --   Init_Load          This is the main procedure of company cost center mapping table
18 --                      maintenance program (initial load).
19 --                      It will take in all parameters, initialize all necessary
20 --                      variables and start calling the appropriate routines.
21 -- Arguments
22 --   errbuf		Standard error buffer
23 --   retcode 		Standard return code
24 
25   PROCEDURE Init_Load (errbuf		OUT	NOCOPY VARCHAR2,
26 		       retcode		OUT	NOCOPY VARCHAR2);
27 
28 -- **************************************************************************************
29 -- Procedure
30 --   Incre_Update       This is the main procedure of company cost center mapping table
31 --                      maintenance program (incremental update).
32 --                      It will take in all parameters, initialize all necessary
33 --                      variables and start calling the appropriate routines.
34 -- Arguments
35 --   errbuf		Standard error buffer
36 --   retcode 		Standard return code
37 
38   PROCEDURE Incre_Update (errbuf   OUT  NOCOPY  VARCHAR2,
39 		          retcode  OUT  NOCOPY  VARCHAR2);
40 
41 END FII_COM_CC_DIM_MAPS_PKG;