DBA Data[Home] [Help]

PACKAGE: APPS.PYUDET

Source


1 package pyudet AUTHID CURRENT_USER as
2 /* $Header: pyudet.pkh 120.2.12010000.1 2008/07/27 23:46:57 appldev ship $
3 
4  Copyright (c) Oracle Corporation 1995. All rights reserved
5 
6  Name          : pyudet
7  Description   : Start Of Year Process, used to change Tax Basis to
8                  Cumlative, clear Previous Tax Paid and Taxable Pay,
9                  uplift Tax Codes or read new Tax Codes from tape.
10  Author        : Barry Goodsell
11  Date Created  : 15-Aug-95
12  Uses          : hr_entry_api, hr_utility
13 
14  Change List
15  -----------
16  Date        Name            Vers     Bug No   Description
17  +-----------+---------------+--------+--------+-----------------------+
18   15-Aug-95   B.Goodsell      40.0              First Created
19 
20   19-Sep-95   B.Goodsell      40.1              Debugging
21 
22   09-Oct-95   B.Goodsell      40.2              Edits required for
23                                                 release
24   04-Nov-96   R.Thirlby       40.3              Added p_request_id for SOY
25                                                 Resume functionality
26   01-Dec-00   A.Mills         110.2             Added commit.
27   12-Sep-01   KThampan        115.3   1988081   Added p_authority parameter to
28                                                 hold the value of Authority
29   23-Jan-03   GButler	      115.5   2709102   Added nocopy qualifier to
30   					        out params on run_process.
31   					        GSCC fixes.
32   18-MAY-05   KThampan        115.6             Added p_p6_request_id to
33                                                 hold fnd_request id of
34                                                 the P6/P9 upload process.
35   29-OCT-2007 Dinesh C.       115.8  2626560    Change for SOY 08-09.
36  +-----------+---------------+--------+--------+-----------------------+
37 */
38 --
39  ---------------------------------------------------------------------
40  -- NAME                                                            --
41  -- pyudet.run_process                                              --
42  --                                                                 --
43  -- DESCRIPTION                                                     --
44  -- The main procedure called from the SRS screen                   --
45  ---------------------------------------------------------------------
46 --
47 procedure run_process (
48    errbuf                       out  nocopy   varchar2,
49    retcode                      out  nocopy   varchar2,
50    p_request_id                 in      number default null,
51    p_mode                       in      number,
52    p_effective_date             in      date,
53    p_business_group_id          in      number,
54    p_payroll_id                 in      number,
55    p_authority                  in      varchar2 default null,
56    p_p6_request_id              in      number default null,
57    p_validate_only              in      VARCHAR2 DEFAULT 'GB_VALIDATE_COMMIT'); /*Added soy 08-09*/
58 --
59 end pyudet;