DBA Data[Home] [Help]

PACKAGE: APPS.BEN_EXT_PAYROLL_BALANCE

Source


1 package ben_ext_payroll_balance as
2 /* $Header: benxpybl.pkh 120.2.12010000.2 2008/08/05 14:59:40 ubhat ship $ */
3 --------------------------------------------------------------------------------
4 /*
5 +==============================================================================+
6 |			Copyright (c) 1997 Oracle Corporation		       |
7 |			   Redwood Shores, California, USA		       |
8 |			        All rights reserved.			       |
9 +==============================================================================+
10 --
11 Name
12         Benefit Extract Thread
13 Purpose
14         This package is to extract payroll balance data
15 History
16         Date             Who        Version    What?
17         17-May-2005      tjesumic   115.0      Created.
18         27-sep-2005      tjesumic   115.1      sort_payroll_events added tp sort payroll event process
19 
20 */
21 --
22 g_package     varchar2(80) := 'ben_ext_payroll_balance';
23 --
24 
25 
26 function Get_Balance_Value
27         (p_business_group_id  in number
28         ,p_assignment_id      in number
29         ,p_effective_date     in date
30         ,p_legislation_code   in varchar2
31         ,p_defined_balance_id in number
32          )
33          return number ;
34 
35 
36 
37 PROCEDURE sort_payroll_events
38             (p_pay_events_tab IN  ben_ext_person.t_detailed_output_table)
39           ;
40 End ben_ext_payroll_balance ;