DBA Data[Home] [Help]

PACKAGE: APPS.PAY_CA_EOY_RL1_AMEND_REG

Source


1 PACKAGE pay_ca_eoy_rl1_amend_reg AUTHID CURRENT_USER AS
2 /* $Header: pycarl1cr.pkh 120.1.12020000.2 2012/12/31 12:45:12 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_rl1_amend_reg
21 
22     Description : This Package is used by RL1 Amendment Register
23                   and RL1 Amendment Paper Reports.
24 
25    Change List
26    -----------
27    Date         Name        Vers   Bug No   Description
28    -----------  ----------  -----  -------  -----------------------------------
29    26-OCT-2003  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   PROCEDURE get_payroll_action_info(p_payroll_action_id     in number
39                                    ,p_end_date             out nocopy date
40                                    ,p_start_date           out nocopy date
41                                    ,p_business_group_id    out nocopy number
42                                    ,p_pre_org_id           out nocopy number
43                                    ,p_person_id            out nocopy number
44                                    ,p_asg_set              out nocopy number
45                                    ,p_print                out nocopy varchar2
46                                    ,p_report_type          out nocopy varchar2
47                                    );
48 
49 -- Added for Bug# 10399514
50   PROCEDURE get_payroll_action_info(p_payroll_action_id   in number
51                                    ,p_end_date            out nocopy date
52                                    ,p_start_date          out nocopy date
53                                    ,p_business_group_id   out nocopy number
54                                    ,p_pre_org_id          out nocopy number
55                                    ,p_person_id           out nocopy number
56                                    ,p_asg_set             out nocopy number
57                                    ,p_print               out nocopy varchar2
58                                    ,p_report_type         out nocopy varchar2
59                                    ,p_report_qualifier    out nocopy varchar2
60 		  			                       ,p_report_category     out nocopy varchar2
61 		  			                       ,p_print_term          out nocopy varchar2
62                                    );
63 
64 
65   PROCEDURE range_cursor(p_payroll_action_id in number
66                         ,p_sqlstr           out nocopy varchar2);
67 
68   PROCEDURE action_creation(p_payroll_action_id   in number
69                            ,p_start_person_id     in number
70                            ,p_end_person_id       in number
71                            ,p_chunk               in number);
72 
73 
74   FUNCTION get_parameter(name in varchar2,
75                          parameter_list varchar2) return varchar2;
76 
77   PROCEDURE sort_action (payactid   in     varchar2,
78                          sqlstr     in out nocopy varchar2,
79                          len        out nocopy   number);
80 
81   g_min_chunk    number:= -1;
82   g_archive_flag varchar2(1) := 'N';
83   g_bal_act_id   number:= -1;
84 
85 END pay_ca_eoy_rl1_amend_reg;