DBA Data[Home] [Help]

PACKAGE: APPS.HR_US_W2_MT

Source


1 PACKAGE hr_us_w2_mt AS
2 /* $Header: pyusw2mt.pkh 120.0.12010000.1 2008/07/27 23:59:33 appldev ship $ */
3 
4 /*
5  +=====================================================================+
6  |              Copyright (c) 1997 Orcale Corporation                  |
7  |                 Redwood Shores, California, USA                     |
8  |                      All rights reserved.                           |
9  +=====================================================================+
10 Name        : pyusw2mt.pkh
11 Description : This package declares functions and procedures which are
12               used to return values for the W2 US Payroll reports.
13 
14 Change List
15 -----------
16 
17 Version Date      Author          ER/CR No. Description of Change
18 -------+---------+---------------+---------+--------------------------
19 40.0              AAsthana                  Created for Multi-threaded report.
20 115.1             meshah                    set verify off;
21 115.2             meshah                    dbdrv
22 115.3             meshah                    dbdrv, checkfile syntax
23 */
24 procedure range_cursor ( pactid in  number,
25                          sqlstr out nocopy varchar2
26                        );
27 procedure action_creation ( pactid in number,
28                             stperson in number,
29                             endperson in number,
30                             chunk in number
31                           );
32 procedure sort_action ( payactid   in     varchar2,
33                         sqlstr     in out nocopy varchar2,
34                         len        out   nocopy number
35                       );
36 function get_parameter(name in varchar2,
37                        parameter_list varchar2) return varchar2;
38 pragma restrict_references(get_parameter, WNDS, WNPS);
39 --
40 end hr_us_w2_mt;