DBA Data[Home] [Help]

PACKAGE: APPS.JL_CO_AP_WITHHOLDING_PKG

Source


1 PACKAGE JL_CO_AP_WITHHOLDING_PKG AUTHID CURRENT_USER AS
2 /* $Header: jlcopwhs.pls 120.1 2002/11/14 19:12:41 thwon ship $ */
3 
4 /**************************************************************************
5  *                                                                        *
6  * Name       : Jl_Co_Ap_Do_Withholding                                   *
7  * Purpose    : This is the main Colombian withholding tax calculation    *
8  *              routine. This procedure can be divided into three         *
9  *              processing units (just like the core calculation routine) *
10  *              1. Create Temporary Distribution Lines                    *
11  *              2. Create AWT Distribution Lines                          *
12  *              3. Create AWT Invoices                                    *
13  *                                                                        *
14  **************************************************************************/
15 
16 PROCEDURE Jl_Co_Ap_Do_Withholding
17                    (P_Invoice_Id 		IN	Number,
18                     P_AWT_Date			IN 	Date,
19                     P_Calling_Module		IN	Varchar2,
20                     P_Amount			IN	Number,
21                     P_Payment_Num		IN	Number Default Null,
22                     P_Last_Updated_By		IN 	Number,
23                     P_Last_Update_login		IN	Number,
24                     P_Program_Application_Id	IN	Number Default Null,
25                     P_Program_Id		IN	Number Default Null,
26                     P_Request_Id		IN 	Number Default Null,
27                     P_AWT_Success		OUT NOCOPY	Varchar2
28                     );
29 
30 
31 END JL_CO_AP_WITHHOLDING_PKG;