DBA Data[Home] [Help]

PACKAGE: APPS.PAY_CA_EOY_T4A_AMEND_REG

Source


1 PACKAGE pay_ca_eoy_t4a_amend_reg AS
2 /* $Header: pycat4acr.pkh 120.0.12000000.1 2007/01/17 17:29:17 appldev noship $ */
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_reg
21 
22     Description : This Package is used by  T4A Amendment Register
23                   T4A Amendment Paper Reports.
24 
25    Change List
26    -----------
27    Date         Name        Vers   Bug No   Description
28    -----------  ----------  -----  -------  -----------------------------------
29    03-SEP-2004  SSouresr    115.0            Created.
30 */
31 
32 
33   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
34                                    ,p_end_date            out nocopy date
35                                    ,p_start_date          out nocopy date
36                                    ,p_business_group_id   out nocopy number
37                                    ,p_tax_unit_id         out nocopy number
38                                    ,p_person_id           out nocopy number
39                                    ,p_asg_set             out nocopy number
40                                    ,p_print               out nocopy varchar2
41                                    ,p_report_type         out nocopy varchar2
42                                    );
43 
44 
45   PROCEDURE range_cursor(p_payroll_action_id in number
46                                ,p_sqlstr           out nocopy varchar2);
47 
48   PROCEDURE action_creation(p_payroll_action_id   in number
49                                   ,p_start_person_id     in number
50                                   ,p_end_person_id       in number
51                                   ,p_chunk               in number);
52 
53 
54 
55   FUNCTION get_parameter(name in varchar2,
56                        parameter_list varchar2) return varchar2;
57 
58   PROCEDURE sort_action ( payactid   in     varchar2,
59                         sqlstr     in out nocopy varchar2,
60                         len        out nocopy   number
61                       );
62 
63   g_min_chunk    number:= -1;
64   g_archive_flag varchar2(1) := 'N';
65   g_bal_act_id   number:= -1;
66 
67 END pay_ca_eoy_t4a_amend_reg;