DBA Data[Home] [Help]

PACKAGE: APPS.PAY_CA_EOY_RL2_AMEND_REG

Source


1 PACKAGE pay_ca_eoy_rl2_amend_reg AUTHID CURRENT_USER AS
2 /* $Header: pycarl2cr.pkh 120.2.12020000.2 2012/12/31 13:19:32 rgottipa 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_rl2_amend_reg
21 
22     Description : This Package is used by RL2 Amendment Register
23                   and RL2 Amendment Paper Reports.
24 
25    Change List
26    -----------
27    Date         Name        Vers   Bug No   Description
28    -----------  ----------  -----  -------  -----------------------------------
29    04-FEB-2006  SSouresr    115.0            Created.
30    06-SEP-2011  rgottipa    115.1 10399514  Overloaded the PROCEDURE
31                                             get_payroll_action_info to get
32                                             report_qualifier and report_category
33    31-DEC-2012 rgottipa   115.2   15886428  Modified the defination of procedure
34                                             'get_payroll_action_info' by adding extra
35                                             parameter 'p_print_term'
36 */
37 
38 
39   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
40                                    ,p_end_date            out nocopy date
41                                    ,p_start_date          out nocopy date
42                                    ,p_business_group_id   out nocopy number
43                                    ,p_pre_org_id          out nocopy number
44                                    ,p_person_id           out nocopy number
45                                    ,p_asg_set             out nocopy number
46                                    ,p_print               out nocopy varchar2
47                                    ,p_report_type         out nocopy varchar2
48                                    );
49 
50 -- Added for Bug# 10399514
51   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
52                                    ,p_end_date            out nocopy date
53                                    ,p_start_date          out nocopy date
54                                    ,p_business_group_id   out nocopy number
55                                    ,p_pre_org_id          out nocopy number
56                                    ,p_person_id           out nocopy number
57                                    ,p_asg_set             out nocopy number
58                                    ,p_print               out nocopy varchar2
59                                    ,p_report_type         out nocopy varchar2
60                                    ,p_report_qualifier    out nocopy varchar2
61 		  			                       ,p_report_category     out nocopy varchar2
62 		  			                       ,p_print_term          out nocopy varchar2
63                                    );
64 
65 
66   PROCEDURE range_cursor(p_payroll_action_id in number
67                         ,p_sqlstr           out nocopy varchar2);
68 
69   PROCEDURE action_creation(p_payroll_action_id   in number
70                            ,p_start_person_id     in number
71                            ,p_end_person_id       in number
72                            ,p_chunk               in number);
73 
74 
75   FUNCTION get_parameter(name in varchar2,
76                          parameter_list varchar2) return varchar2;
77 
78   PROCEDURE sort_action (payactid   in     varchar2,
79                          sqlstr     in out nocopy varchar2,
80                          len        out nocopy   number);
81 
82   g_min_chunk    number:= -1;
83   g_archive_flag varchar2(1) := 'N';
84   g_bal_act_id   number:= -1;
85 
86 END pay_ca_eoy_rl2_amend_reg;