DBA Data[Home] [Help]

PACKAGE: APPS.ARP_ETAX_AUTOINV_UTIL

Source


1 PACKAGE ARP_ETAX_AUTOINV_UTIL  AUTHID CURRENT_USER AS
2 /* $Header: AREBTAIS.pls 120.1 2008/01/15 19:49:31 mraymond ship $ */
3 
4 /*=======================================================================+
5  |  Declare PUBLIC Data Types and Variables
6  +=======================================================================*/
7 --    temp_variable1 VARCHAR2(10);
8 
9 /*=======================================================================+
10  |  Declare PUBLIC Exceptions
11  +=======================================================================*/
12 --    temp_exception EXCEPTION;
13 
14 /*========================================================================
15  | PUBLIC PROCEDURE populate_ebt_gt
16  |
17  | DESCRIPTION
18  |    This procedure populates the ebt GT tables that are used by
19  |    autoinvoice for tax calculations.  The procedure will be called
20  |    twice - once for INV and a second time for CM (regular) data.
21  |
22  | PSEUDO CODE/LOGIC
23  |
24  | PARAMETERS
25  |      p_request_id    IN      Request_id of import job
26  |      p_phase         IN      Indicates 'INV' or 'CM' phase
27  |
28  | KNOWN ISSUES
29  |
30  | NOTES
31  |
32  | MODIFICATION HISTORY
33  | Date                  Author            Description of Changes
34  | 28-FEB-2005           MRAYMOND          Created
35  |
36  *=======================================================================*/
37 PROCEDURE calculate_tax(
38                 p_request_id  IN  NUMBER,
39                 p_phase       IN  VARCHAR2,
40                 p_error_count IN OUT NOCOPY NUMBER,
41                 p_return_status  OUT NOCOPY NUMBER);
42 
43 END ARP_ETAX_AUTOINV_UTIL;
44