DBA Data[Home] [Help]

PACKAGE: APPS.PAY_PAYRG_PKG

Source


1 package pay_payrg_pkg as
2 /* $Header: pypayreg.pkh 120.0.12000000.1 2007/01/17 23:29:55 appldev noship $ */
3 /*
4    ******************************************************************
5    *                                                                *
6    *  Copyright (C) 1992 Oracle Corporation UK Ltd.,                *
7    *                   Chertsey, England.                           *
8    *                                                                *
9    *  All rights reserved.                                          *
10    *                                                                *
11    *  This material has been provided pursuant to an agreement      *
12    *  containing restrictions on its use.  The material is also     *
13    *  protected by copyright law.  No part of this material may     *
14    *  be copied or distributed, transmitted or transcribed, in      *
15    *  any form or by any means, electronic, mechanical, magnetic,   *
16    *  manual, or otherwise, or disclosed to third parties without   *
17    *  the express written permission of Oracle Corporation UK Ltd,  *
18    *  Oracle Park, Bittams Lane, Guildford Road, Chertsey, Surrey,  *
19    *  England.                                                      *
20    *                                                                *
21    ******************************************************************
22 
23    Change List
24    -----------
25    Date         Name        Vers   Bug No   Description
26    -----------  ----------  -----  -------  -----------------------------------
27    09-JAN-1999  meshah      40.0            Created.
28    15-AUG-2000  ahanda      115.1           Added commit before exit stmt.
29    21-DEC-2001  meshah      115.2           Adding dbdrv.
30    19-dec-2002  tclewis     115.3           Added nocopy
31    27-DEC-2002  meshah      115.7           fixed gscc warning.
32    29-OCT-2004  tclewis     115.8           added function sort_option.
33 
34 --
35 */
36 procedure range_cursor ( pactid in  number,
37                          sqlstr out nocopy varchar2
38                        );
39 procedure action_creation ( pactid in number,
40                             stperson in number,
41                             endperson in number,
42                             chunk in number
43                           );
44 procedure sort_action ( payactid   in     varchar2,
45                         sqlstr     in out nocopy varchar2,
46                         len        out    nocopy number
47                       );
48 function get_parameter(name in varchar2,
49                        parameter_list varchar2) return varchar2;
50 
51 function sort_option  (c_option_name    in varchar2,
52                         c_assignment_id  in number,
53                         c_effective_date in date,
54                         c_tax_unit_id    in number) return varchar2;
55 
56 
57 pragma restrict_references(get_parameter, WNDS, WNPS);
58 --
59 end pay_payrg_pkg;