DBA Data[Home] [Help]

PACKAGE BODY: APPS.PAY_ELEMENT_EXTRACT_DATA_PKG

Source


1 PACKAGE BODY pay_element_extract_data_pkg AS
2 /* $Header: pyelerpd.pkb 120.0 2005/05/29 04:33:22 appldev noship $ */
3 --
4 /*
5    ******************************************************************
6    *                                                                *
7    *  Copyright (C) 1996 Oracle Corporation.                        *
8    *  All rights reserved.                                          *
9    *                                                                *
10    *  This material has been provided pursuant to an agreement      *
11    *  containing restrictions on its use.  The material is also     *
12    *  protected by copyright law.  No part of this material may     *
13    *  be copied or distributed, transmitted or transcribed, in      *
14    *  any form or by any means, electronic, mechanical, magnetic,   *
15    *  manual, or otherwise, or disclosed to third parties without   *
16    *  the express written permission of Oracle Corporation,         *
17    *  500 Oracle Parkway, Redwood City, CA, 94065.                  *
18    *                                                                *
19    ******************************************************************
20 
21     Name        : pay_element_extract_data_pkg
22 
23     Description : Package for the Elements Reports.
24                   The package can be used by the users to add columns
25                   which they want on the report.
26 
27                   The data is printed at the end of the report for
28                   each assignment. The package is passed the following
29                   paramaters to the report which can be used for
30                   retreiving data.
31                         - assignment_id
32                         - person_id
33                         - assignment_action_id
34                         - effective_date from pay_payroll_actions
35 
36     Change List
37     -----------
38      Date        Name      Vers    Bug No    Description
39      ----        ----      ------  -------   -----------
40      04-AUG-2000 ahanda    115.0             Created.
41 
42 */
43 
44   PROCEDURE populate_table (p_assignment_id         in number
45                            ,p_person_id             in number
46                            ,p_assignment_action_id  in number
47                            ,p_effective_date        in date
48                            )
49   IS
50 
51   BEGIN
52 
53     null;
54 
55   END populate_table;
56 
57 
58 --BEGIN
59 
60 --  ltt_element_extract_label(1) := 'Custom Test';
61 --  ltt_element_extract_data(1)  := 1100;
62 
63 END pay_element_extract_data_pkg;