DBA Data[Home] [Help]

PACKAGE: APPS.QP_JAVA_ENGINE_CACHE_PVT

Source


1 PACKAGE QP_JAVA_ENGINE_CACHE_PVT AUTHID CURRENT_USER as
2 /* $Header: QPXJCCVS.pls 120.2 2006/03/09 16:09:06 hwong noship $ */
3 
4 type number_tbl_type is table of number index by binary_integer;
5 type date_tbl_type is table of date index by binary_integer;
6 type varchar30_tbl_type is table of varchar2(30) index by binary_integer;
7 type varchar240_tbl_type is table of varchar2(240) index by binary_integer;
8 type varchar300_tbl_type is table of varchar2(300) index by binary_integer;
9 type varchar1000_tbl_type is table of varchar2(1000) index by binary_integer;
10 
11 --G_CR CONSTANT VARCHAR2(1) := CHR(13);
12 
13 PROCEDURE UPDATE_CACHE_STATS
14 (
15  err_buff                OUT NOCOPY VARCHAR2,
16  retcode                 OUT NOCOPY NUMBER
17 );
18 
19 --PROCEDURE UPDATE_CAT_NO_PROD_PRICING;
20 
21 PROCEDURE WARM_UP
22 (
23  err_buff                OUT NOCOPY VARCHAR2,
24  retcode                 OUT NOCOPY NUMBER
25 );
26 
27 PROCEDURE SYNCHRONIZE
28 (
29  err_buff                OUT NOCOPY VARCHAR2,
30  retcode                 OUT NOCOPY NUMBER,
31  p_list_header_id NUMBER,
32  p_price_formula_id NUMBER,
33  p_currency_header_id NUMBER,
34  p_all_others VARCHAR2,
35  p_full_cache VARCHAR2
36 );
37 
38 PROCEDURE MANAGE
39 (
40  err_buff                OUT NOCOPY VARCHAR2,
41  retcode                 OUT NOCOPY NUMBER,
42  p_manage_action VARCHAR2,
43  p_dump_type VARCHAR2,
44  p_dump_input1 VARCHAR2,
45  p_dump_input2 VARCHAR2,
46  p_dump_input3 VARCHAR2
47 );
48 
49 END QP_JAVA_ENGINE_CACHE_PVT;