DBA Data[Home] [Help]

PACKAGE: APPS.FII_AR_COLLECTORS_PKG

Source


1 PACKAGE FII_AR_COLLECTORS_PKG AS
2 /* $Header: FIIARCOLLS.pls 120.0.12000000.1 2007/02/23 02:27:40 applrt ship $ */
3 
4 -- *******************************************************************
5 -- Package level variables
6 -- *******************************************************************
7 
8  FIIDIM_Debug			BOOLEAN		:= FALSE;
9  FII_User_Id			NUMBER		:= NULL;
10  FII_Login_Id			NUMBER		:= NULL;
11  FII_Req_Id			NUMBER		:= NULL;
12  CODIM_fatal_err		EXCEPTION;
13 
14 -- ************************************************************************
15 
16 -- Procedure
17 --   Init_Load          This is the main procedure of collector dimension
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 collector dimension
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_AR_COLLECTORS_PKG;