DBA Data[Home] [Help]

PACKAGE: APPS.PAY_US_OVER_LIMIT_PKG

Source


1 package pay_us_over_limit_pkg as
2 /* $Header: pyusoltm.pkh 120.0.12010000.1 2008/07/27 23:54:31 appldev ship $ */
3 /*
4    Copyright (c) Oracle Corporation 1991,1992,1993. All rights reserved
5 --
6    Name        :This package defines the cursors needed for OLT to run Multi-Threaded
7 --
8    Change List
9    -----------
10    Date         Name        Vers   Bug No   Description
11    -----------  ----------  -----  -------  -----------------------------------
12    01-DEC-2001  irgonzal    115.0  2045352  Created.
13    05-FEB-2002  meshah      115.1           Added checkfile entry to the file.
14    18-MAY-2003  vgunasek    115.3  2938556  Added no copy for the out parameters.
15    02-JUN-2003  vgunasek    115.4  2938556  Added change history.
16 
17 --
18 */
19 procedure range_cursor ( pactid in  number,
20                          sqlstr out nocopy varchar2
21                        );
22 
23 procedure action_creation ( pactid in number,
24                             stperson in number,
25                             endperson in number,
26                             chunk in number
27                           );
28 
29 procedure sort_action ( pactid   in     varchar2,
30                         sqlstr     in out nocopy varchar2,
31                         len        out   nocopy  number
32                       );
33 
34 function get_parameter(name in varchar2,
35                        parameter_list varchar2) return varchar2;
36 
37 pragma restrict_references(get_parameter, WNDS, WNPS);
38 --
39 end pay_us_over_limit_pkg;