DBA Data[Home] [Help]

PACKAGE: APPS.PAY_CA_EOY_T4A_AMEND_ARCH

Source


1 PACKAGE pay_ca_eoy_t4a_amend_arch AUTHID CURRENT_USER AS
2 /* $Header: pycat4aca.pkh 120.2 2012/01/19 08:48:55 rpahune 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_t4a_amend_arch
21 
22     Description : This procedure is used by Federal YE Amendment Pre-Process
23                   to archive data for T4A Amendment Paper Report.
24 
25    Change List
26    -----------
27    Date         Name        Vers   Bug No   Description
28    -----------  ----------  -----  -------  -----------------------------------
29    27-AUG-2004  SSouresr    115.0            Created.
30    29-AUG-2011  sneelapa    115.1 10399514   Overloaded get_payroll_action_info
31                                               for range person.
32 */
33 
34 
35   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
36                                    ,p_end_date            out nocopy date
37                                    ,p_start_date          out nocopy date
38                                    ,p_business_group_id   out nocopy number
39                                    ,p_tax_unit_id         out nocopy number
40                                    ,p_person_id           out nocopy number
41                                    ,p_asg_set             out nocopy number
42                                    ,p_year                out nocopy varchar2);
43 
44   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
45                                    ,p_end_date            out nocopy date
46                                    ,p_start_date          out nocopy date
47                                    ,p_business_group_id   out nocopy number
48                                    ,p_tax_unit_id         out nocopy number
49                                    ,p_person_id           out nocopy number
50                                    ,p_asg_set             out nocopy number
51                                    ,p_year                out nocopy varchar2
52                                    ,p_report_type         out nocopy varchar2
53                                    ,p_state               out nocopy varchar2
54                                    ,p_report_cat          out nocopy varchar2
55                                    );
56 
57   PROCEDURE eoy_range_cursor(p_payroll_action_id in number
58                             ,p_sqlstr           out nocopy varchar2);
59 
60   PROCEDURE eoy_action_creation(p_payroll_action_id   in number
61                                ,p_start_person_id     in number
62                                ,p_end_person_id       in number
63                                ,p_chunk               in number);
64 
65 
66   FUNCTION get_parameter(name in varchar2,
67                        parameter_list varchar2) return varchar2;
68 
69   g_min_chunk    number:= -1;
70   g_archive_flag varchar2(1) := 'N';
71   g_bal_act_id   number:= -1;
72 
73 END pay_ca_eoy_t4a_amend_arch;