DBA Data[Home] [Help]

PACKAGE: APPS.ICX_ON

Source


1 package icx_on as
2 /* $Header: ICXONMS.pls 120.0 2005/10/07 12:16:22 gjimenez noship $ */
3 
4 type number_table is table of number
5         index by binary_integer;
6 
7 type v30_table is table of varchar2(30)
8         index by binary_integer;
9 
10 type v50_table is table of varchar2(50)
11         index by binary_integer;
12 
13 type v240_table is table of varchar2(240)
14         index by binary_integer;
15 
16 type v2000_table is table of varchar2(2000)
17         index by binary_integer;
18 
19 type rowid_table is table of rowid
20         index by binary_integer;
21 
22 procedure get_page(p_attributes in icx_on_utilities.v80_table,
23 		   p_conditions in icx_on_utilities.v80_table,
24 		   p_inputs	in icx_on_utilities.v80_table,
25 		   p_match      in varchar2,
26 		   p_and_or	in varchar2);
27 
28 procedure create_file(S in number,
29 		      c_delimiter in varchar2);
30 
31 c_ampersand constant varchar2(1) := '&';
32 c_percent   constant varchar2(1) := '%';
33 
34 end icx_on;