DBA Data[Home] [Help]

PACKAGE: APPS.FII_AR_CUSTOMER_DIMENSION_PKG

Source


1 PACKAGE FII_AR_CUSTOMER_DIMENSION_PKG AS
2 /* $Header: FIIARCUSTS.pls 120.2.12000000.1 2007/02/23 02:27:44 applrt ship $ */
3 
4 -- *******************************************************************
5 -- Package level variables
6 -- *******************************************************************
7 
8 -- ************************************************************************
9 -- Procedure
10 --   Init_Load          This is the main procedure of the customer dimension
11 --                      maintenance program (initial load).
12 --                      It will take in all parameters, initialize all necessary
13 --                      variables and start calling the appropriate routines.
14 -- Arguments
15 --   errbuf		Standard error buffer
16 --   retcode 		Standard return code
17 
18   PROCEDURE Init_Load (errbuf		OUT	NOCOPY VARCHAR2,
19 		       retcode		OUT	NOCOPY VARCHAR2);
20 
21 -- ************************************************************************
22 -- Procedure
23 --   Incre_Update       This is the main procedure of customer dimension
24 --                      maintenance program (incremental update).
25 --                      It will take in all parameters, initialize all necessary
26 --                      variables and start calling the appropriate routines.
27 -- Arguments
28 --   errbuf		Standard error buffer
29 --   retcode 		Standard return code
30 
31   PROCEDURE Incre_Update (errbuf   OUT  NOCOPY  VARCHAR2,
32 		          retcode  OUT  NOCOPY  VARCHAR2);
33 
34 
35 END FII_AR_CUSTOMER_DIMENSION_PKG;