DBA Data[Home] [Help]

PACKAGE BODY: APPS.PAY_CA_PAYREG_EXTRACT_DATA_PKG

Source


1 PACKAGE BODY pay_ca_payreg_extract_data_pkg AS
2 /* $Header: pycaprpd.pkb 115.2 2001/12/20 00:57:45 pkm ship        $ */
3 /*
4    ******************************************************************
5    *                                                                *
6    *  Copyright (C) 1996 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_payreg_extract_data_pkg
21 
22     Description : Package for the Payment Report.
23                   The package can be used by the users to add columns
24                   which they want on the report.
25                   The data is printed at the end of the report for
26                   each assignment. The package is passed the following
27                   paramaters to the report which can be used for
28                   retreiving data.
29                         - assignment_id
30                         - person_id
31                         - assignment_action_id
32                         - effective_date from pay_payroll_actions
33 
34     Change List
35 
36     -----------
37      Date        Name      Vers    Bug No    Description
38      ----        ----      ------  -------   -----------
39      10-OCT-2001 ssattini  115.0             Created.
40      20-NOV-2001 ssattini  115.1             Added dbdrv line.
41      20-DEC-2001 ssattini  115.2             Added checkfile line.
42 
43 */
44 
45   PROCEDURE populate_table (p_assignment_id         in number
46                            ,p_person_id             in number
47                            ,p_assignment_action_id  in number
48                            ,p_effective_date        in date
49                            )
50   IS
51 
52   BEGIN
53 
54     null;
55 
56   END populate_table;
57 
58 
59 END pay_ca_payreg_extract_data_pkg;