DBA Data[Home] [Help]

PACKAGE: APPS.PAY_AU_SUPER_FF

Source


1 PACKAGE pay_au_super_ff AS
2 /* $Header: pyaufmsp.pkh 120.0 2005/05/29 03:06:33 appldev noship $ */
3 /*
4  +==========================================================================================
5  |              Copyright (c) 1999 Oracle Corporation Ltd
6  |                           All rights reserved.
7  +==========================================================================================
8  Change List
9  ----------
10  DATE        Name            Vers     Bug No    Description
11  -----------+---------------+--------+--------+-----------------------+
12  01-Dec-1999 makelly         115.0             Created for AU
13  04-Dec-2002 Ragovind        115.1    2689226  Added NOCOPY for the function get_bals.
14  09-Aug-2004 abhkumar        115.2    2610141  Added tax_unit_id parameter in function get_bals for LE changes.
15  08-SEP-2004 abhkumar        115.3    2610141  Added a new parameter to function get_bals
16  -----------+---------------+--------+--------+-----------------------+
17 */
18 
19 /*
20 **------------------------------ Formula Fuctions ---------------------------------
21 **  Package containing addition processing required by superannuation
22 **  formula in AU localisaton
23 */
24 
25 
26 /*
27 **  get_bals - get the balances for user specified balance
28 */
29 
30 
31 function  get_bals
32           (
33             p_ass_act_id  in     number
34            ,p_tax_unit_id in     number  --2610141
35            ,p_bal_id      in     number
36            ,p_use_tax_flag IN    VARCHAR2 --2610141
37            ,p_bal_run     in out NOCOPY number
38            ,p_bal_mtd     in out NOCOPY number
39            ,p_bal_qtd     in out NOCOPY number
40           )
41           return number;
42 
43 end pay_au_super_ff;