DBA Data[Home] [Help]

PACKAGE: APPS.PAY_MX_RULES

Source


1 PACKAGE pay_mx_rules AS
2 /* $Header: pymxrule.pkh 120.3.12000000.1 2007/01/17 22:49:40 appldev noship $*/
3 
4    PROCEDURE get_main_tax_unit_id(p_assignment_id   in     number,
5                                   p_effective_date  in     date,
6                                   p_tax_unit_id  in out nocopy number);
7 
8    PROCEDURE get_default_jurisdiction( p_asg_act_id   IN            NUMBER
9                                       ,p_ee_id        IN            NUMBER
10                                       ,p_jurisdiction IN OUT NOCOPY VARCHAR2);
11 
12    FUNCTION  element_template_pre_process( p_rec in PAY_ELE_TMPLT_OBJ )
13    RETURN PAY_ELE_TMPLT_OBJ;
14 
15    PROCEDURE element_template_post_process( p_element_template_id   in NUMBER );
16 
17 
18    PROCEDURE add_custom_xml
19        (p_assignment_action_id number,
20         p_action_information_category varchar2,
21         p_document_type varchar2);
22 
23   /****************************************************************************
24     Name        : STRIP_SPL_CHARS
25     Description : This function converts special characters into equivalent
26                   ASCII characters.
27   *****************************************************************************/
28   FUNCTION STRIP_SPL_CHARS ( P_IN_STRING  IN  VARCHAR2)
29   RETURN VARCHAR2;
30 
31 END pay_mx_rules;
32