DBA Data[Home] [Help]

PACKAGE: APPS.OPI_DBI_RES_PKG

Source


1 PACKAGE OPI_DBI_RES_PKG AS
2 /* $Header: OPIDRESS.pls 120.2 2005/09/01 10:58:09 julzhang noship $ */
3 
4 /*======================================================================
5     This is the wrapper procedure for Resource initial load which extracts
6     actual resource usage and resource availability data for discrete
7     and process organizations.
8 
9     Parameters:
10     - errbuf: error buffer
11     - retcode: return code
12     - p_degree: degree
13 =======================================================================*/
14 PROCEDURE initial_load_res_utl( errbuf  in out nocopy varchar2,
15                 retcode in out nocopy VARCHAR2,
16                 p_degree       NUMBER    );
17 
18 
19 
20 /*======================================================================
21     This procedure extracts Resource Standard Usage for initial loads.
22 
23     Parameters:
24     - errbuf: error buffer
25     - retcode: return code
26     - p_degree: degree
27 =======================================================================*/
28 PROCEDURE initial_load_res_std (errbuf in out  nocopy varchar2,
29                 retcode in out nocopy VARCHAR2,
30                 p_degree IN    NUMBER    );
31 
32 
33 
34 /*======================================================================
35     This is the wrapper procedure for Resource incremental load which extracts
36     actual resource usage, resource availability, and resource standare usage
37     data for discrete and process organizations.
38 
39     Parameters:
40     - errbuf: error buffer
41     - retcode: return code
42 =======================================================================*/
43 PROCEDURE incremental_load_res_utl ( errbuf  in out nocopy varchar2,
44                     retcode in out  nocopy VARCHAR2      );
45 
46 END opi_dbi_res_pkg;