DBA Data[Home] [Help]

PACKAGE BODY: APPS.JL_AWT_PKG

Source


1 package body JL_AWT_PKG as
2 /* $Header: jlzzawtb.pls 115.0 99/10/14 16:12:52 porting ship   $ */
3 
4 
5 -- MAIN function/procedure begins here.
6 
7 -- +=======================================================================+
8 -- |    Copyright (c) 1999 Oracle Corporation Belmont, California, USA     |
9 -- |                         All rights reserved.                          |
10 -- +=======================================================================+
11 -- |  Procedure
12 -- |    Get_Rate_Id
13 -- |
14 -- |  Description
15 -- |    Procedure Get_Rate_Id used for rate implementations in AWT.
16 -- |
17 -- |  History
18 -- |    J Karouzakis  07-OCT-1999  Created
19 -- |
20 -- +=======================================================================+
21 
22 function Get_Rate_Id (
23                        P_Tax_Name    IN varchar2
24                       ,P_Invoice_Id  IN number
25                       ,P_Payment_Num IN number
26                       ,P_Awt_Date    IN date
27                       ,P_Amount      IN number
28                       )
29                       return number
30 is
31 
32 BEGIN
33    return(null);
34 
35 END Get_Rate_Id;
36 
37 
38 -- +=======================================================================+
39 -- |    Copyright (c) 1999 Oracle Corporation Belmont, California, USA     |
40 -- |                         All rights reserved.                          |
41 -- +=======================================================================+
42 -- |  Procedure
43 -- |    AWT_Rounding
44 -- |
45 -- |  Description
46 -- |    Procedure AWT_Rounding used for rounding implementations in AWT.
47 -- |
48 -- |  History
49 -- |    J Karouzakis  07-OCT-1999  Created
50 -- |
51 -- +=======================================================================+
52 
53 procedure AWT_Rounding (P_Checkrun_Name IN varchar2)
54 is
55 BEGIN
56    null;
57 
58 END AWT_Rounding;
59 
60 end JL_AWT_PKG;