DBA Data[Home] [Help]

PACKAGE: APPS.PAY_US_YEAR_BEGIN_PROCESS

Source


1 PACKAGE pay_us_year_begin_process AUTHID CURRENT_USER AS
2 /* $Header: payusyearbegin.pkh 120.0.12010000.2 2009/10/07 03:51:55 emunisek ship $ */
3 --
4 /*
5 *
6    ******************************************************************
7    *                                                                *
8    *  Copyright (C) 1996 Oracle Corporation.                        *
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,         *
18    *  500 Oracle Parkway, Redwood City, CA, 94065.                  *
19    *                                                                *
20    ******************************************************************
21 
22     Name        : pay_us_year_begin_process
23 
24 
25 
26     Change List
27     -----------
28      Date        Name      Vers    Bug No    Description
29      ----        ----      ------  -------   ---------------
30     09-Nov-2004	 schauhan  115.0   3625425   Initial Version
31     06-Oct-2009  emunisek  115.1   8985595   Added new parameter p_clr_wis_eic
32                                              to the procedure reset_overrides
33                                              to enable the "Clear Wisconsin EIC"
34                                              in "Year Begin Process".An overloaded
35                                              function was created with new parameter
36                                              to maintain integrity of any other
37                                              reference to this procedure.
38 
39 */
40 PROCEDURE  reset_overrides
41               (errbuf                      out nocopy varchar2
42               ,retcode                     out nocopy number
43 	      ,p_business_group            in  varchar2
44 	      ,p_curr_year                 in  varchar2
45 	      ,p_clr_ind_add_ovr           in  varchar2
46 	      ,p_clr_ind_eic               in  varchar2
47 	      ,p_clr_sui_wb_ovr            in  varchar2
48 	      ,p_clr_pa_head_tax           in  varchar2
49 	      ,p_clr_fed_eic_filing_status in  varchar2
50 	     );
51 
52 /*Created for Bug8985595 to allow the clearing of Wisconsin EIC through Year Begin
53 Process */
54 
55 PROCEDURE  reset_overrides
56               (errbuf                      out nocopy varchar2
57               ,retcode                     out nocopy number
58 	      ,p_business_group            in  varchar2
59 	      ,p_curr_year                 in  varchar2
60 	      ,p_clr_ind_add_ovr           in  varchar2
61 	      ,p_clr_ind_eic               in  varchar2
62 	      ,p_clr_sui_wb_ovr            in  varchar2
63 	      ,p_clr_pa_head_tax           in  varchar2
64 	      ,p_clr_fed_eic_filing_status in  varchar2
65 	      ,p_clr_wis_eic               in  varchar2
66 	     );
67 
68 
69 end pay_us_year_begin_process;