DBA Data[Home] [Help]

PACKAGE: APPS.PAY_CA_EOY_T4_AMEND_ARCH

Source


1 PACKAGE pay_ca_eoy_t4_amend_arch AUTHID CURRENT_USER AS
2 /* $Header: pycat4ca.pkh 120.1 2011/09/06 06:47:49 abellur ship $ */
3 /*
4    ******************************************************************
5    *                                                                *
6    *  Copyright (C) 1993 Oracle Corporation.                        *
7    *  All rights reserved.                                          *
8    *                                                                *
9    *  This material has been provided pursuant to an agreement      *
10    *  containing restrictions on its use.  The material is also     *
11    *  protected by copyright law.  No part of this material may     *
12    *  be copied or distributed, transmitted or transcribed, in      *
13    *  any form or by any means, electronic, mechanical, magnetic,   *
14    *  manual, or otherwise, or disclosed to third parties without   *
15    *  the express written permission of Oracle Corporation,         *
16    *  500 Oracle Parkway, Redwood City, CA, 94065.                  *
17    *                                                                *
18    ******************************************************************
19 
20     Name        : pay_ca_eoy_t4_amend_arch
21 
22     Description : This procedure is used by Federal YE Amendment Pre-Process
23                   to archive data for T4 Amendment Paper Report.
24 
25    Change List
26    -----------
27    Date         Name        Vers   Bug No   Description
28    -----------  ----------  -----  -------  -----------------------------------
29    05-SEP-2003  SSattini    115.0            Created.
30    01-SEP-2004  SSouresr    115.1            Added p_year to get_payroll_action_info
31    29-AUG-2011  sneelapa    115.1 10399514   Overloaded get_payroll_action_info
32                                               for range person.
33 */
34 
35 
36   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
37                                    ,p_end_date            out nocopy date
38                                    ,p_start_date          out nocopy date
39                                    ,p_business_group_id   out nocopy number
40                                    ,p_tax_unit_id         out nocopy number
41                                    ,p_person_id           out nocopy number
42                                    ,p_asg_set             out nocopy number
43                                    ,p_year                out nocopy varchar2
44                                    );
45 
46   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
47                                    ,p_end_date            out nocopy date
48                                    ,p_start_date          out nocopy date
49                                    ,p_business_group_id   out nocopy number
50                                    ,p_tax_unit_id         out nocopy number
51                                    ,p_person_id           out nocopy number
52                                    ,p_asg_set             out nocopy number
53                                    ,p_year                out nocopy varchar2
54                                    ,p_report_type         out nocopy varchar2
55                                    ,p_state               out nocopy varchar2
56                                    ,p_report_cat          out nocopy varchar2
57                                    );
58 
59   PROCEDURE eoy_range_cursor(p_payroll_action_id in number
60                             ,p_sqlstr           out nocopy varchar2);
61 
62   PROCEDURE eoy_action_creation(p_payroll_action_id   in number
63                                ,p_start_person_id     in number
64                                ,p_end_person_id       in number
65                                ,p_chunk               in number);
66 
67   FUNCTION get_parameter(name in varchar2,
68                        parameter_list varchar2) return varchar2;
69 
70   g_min_chunk    number:= -1;
71   g_archive_flag varchar2(1) := 'N';
72   g_bal_act_id   number:= -1;
73 
74 END pay_ca_eoy_t4_amend_arch;