DBA Data[Home] [Help]

PACKAGE: APPS.PAY_FR_RULES

Source


1 package pay_fr_rules AUTHID CURRENT_USER as
2 /*   $Header: pyfrrule.pkh 115.6 2004/01/09 08:45:12 aparkes noship $ */
3 /*
4    Copyright (c) Oracle Corporation 1991,1992,1993,1994. All rights reserved
5 --
6    Name        : pay_fr_rules
7 --
8    Change List
9    -----------
10    Date         Name        Vers   Description
11    -----------  ----------  -----  -------------------------------------------
12    01-FEB-2001  asnell      115.0  Created(template pycarule).
13    07-JUN-2001  asnell      115.1  added get_source_context
14    10-OCT-2002  srjadhav    115.2  Added get_dynamic_org_meth
15    07-JUN-2001  asnell      115.3  added nocopy to out parms
16    10-APR-2003  aparkes     115.4  2898674 added get_multi_tax_unit_pay_flag
17    11-NOV-2003  aparkes     115.5  Added retro context override hook
18    08-JAN-2004  aparkes     115.6  Added get_source_text2_context (for bug
19                                    3360253) and get_source_number_context,
20                                    following bug 3305989.
21 */
22    procedure get_source_text_context(p_asg_act_id number,
23                                       p_ee_id number,
24                                       p_source_text in out nocopy varchar2);
25 
26    procedure get_source_text2_context(p_asg_act_id number,
27                                       p_ee_id number,
28                                       p_source_text2 in out nocopy varchar2);
29 
30    procedure get_source_context(      p_asg_act_id number,
31                                       p_ee_id number,
32                                       p_source_id in out nocopy varchar2);
33 
34    procedure get_source_number_context(p_asg_act_id number,
35                                        p_ee_id number,
36                                        p_source_number in out nocopy varchar2);
37 
38    PROCEDURE get_dynamic_org_meth
39 				  (p_assignment_action_id in number
40 				   ,p_effective_date       in date
41 				   ,p_org_meth             in number   -- org meth with no bank account
42 				   ,p_org_method_id        out nocopy number); -- replacement org meth
43 
44    procedure get_multi_tax_unit_pay_flag(p_bus_grp in number,
45                                          p_mtup_flag in out nocopy varchar2);
46 
47 -- retro context override hook
48    procedure retro_context_override(p_element_entry_id  in number,
49                                     p_context_name      in varchar2,
50                                     p_context_value     in varchar2,
51                                     p_replacement_value out nocopy varchar2);
52 --
53 end pay_fr_rules;