1 package pay_create_elemnt_tmplt_record as
2 /* $Header: paycreatetemplte.pkh 120.1 2005/06/13 17:17 pganguly noship $ */
3 --
4 /*
5 /*
6 ******************************************************************
7 * *
8 * Copyright (C) 1992 Oracle Corporation US Ltd., *
9 * *
10 * All rights reserved. *
11 * *
12 * This material has been provided pursuant to an agreement *
13 * containing restrictions on its use. The material is also *
14 * protected by copyright law. No part of this material may *
15 * be copied or distributed, transmitted or transcribed, in *
16 * any form or by any means, electronic, mechanical, magnetic, *
17 * manual, or otherwise, or disclosed to third parties without *
18 * the express written permission of Oracle Corporation USA Ltd, *
19 * USA. *
20 * *
21 ******************************************************************
22
23 Change List
24 -----------
25 Date Name Vers Bug No Description
26 ----------- ---------- ----- ------- -----------------------------------
27 02-MAY-2005 pganguly 115.0 Created.
28 13-JUN-2005 pganguly 115.1 Added p_currency_code parameter
29 in the earnings template.
30 */
31 --
32 procedure create_elemnt_tmplt_usages(p_template_id IN NUMBER,
33 p_classification_type IN VARCHAR2,
34 p_legislation_code IN VARCHAR2);
35
36 procedure create_dedn_flat_amt_templ( p_legislation_code IN VARCHAR2,
37 p_currency_code IN VARCHAR2) ;
38
39 procedure create_dedn_pct_amt_templ( p_legislation_code IN VARCHAR2,
40 p_currency_code IN VARCHAR2) ;
41
42 procedure create_earn_flat_amt_templ( p_legislation_code IN VARCHAR2,
43 p_currency_code IN VARCHAR2);
44
45 procedure create_earn_hxr_amt_templ( p_legislation_code IN VARCHAR2,
46 p_currency_code IN VARCHAR2);
47
48 procedure create_earn_pct_amt_templ( p_legislation_code IN VARCHAR2,
49 p_currency_code IN VARCHAR2);
50
51 procedure create_all_templates(p_legislation_code IN VARCHAR2,
52 p_currency_code IN VARCHAR2);
53
54 end pay_create_elemnt_tmplt_record;