DBA Data[Home] [Help]

PACKAGE: APPS.INV_THIRD_PARTY_STOCK_AP_MDTR

Source


1 PACKAGE INV_THIRD_PARTY_STOCK_AP_MDTR AUTHID CURRENT_USER AS
2 -- $Header: INVCAPDS.pls 115.3 2002/12/07 00:08:49 pseshadr noship $ --
3 --+=======================================================================+
4 --|               Copyright (c) 2002 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     INVCAPDS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|     Consignment Dependency wrapper API                                |
13 --| HISTORY                                                               |
14 --|     12/01/2002 pseshadr       Created                                 |
15 --|     12/01/2002 dherring       Created                                 |
16 --+========================================================================
17 
18 --===================
19 -- PROCEDURES AND FUNCTIONS
20 --===================
21 
22 --========================================================================
23 -- PROCEDURE  : Calculate_Tax         PUBLIC
24 -- PARAMETERS:
25 --             p_header_id            PO Header Id
26 --             p_org_id               Operating Unit
27 --             p_item_id              Item
28 --             p_need_by_date         Consumption Date
29 --             p_ship_to_organization Inventory Organization
30 --             p_account_id           Accrual account
31 --             p_tax_code_id          Tax code id from PO Lines
32 --             p_transaction_quantity Transaction Qty
33 --             p_po_price             PO price
34 --             x_tax_rate             Tax rate
35 --             x_tax_recovery_rate    Recovery rate
36 --             x_recoverable_Tax      Recoverable tax
37 --             x_nonrecoverable_tax   Non recoverable tax
38 -- COMMENT   : Return the recoverable and nonrecoverable tax
39 --========================================================================
40 PROCEDURE calculate_tax
41 ( p_header_id               IN NUMBER
42 , p_line_id                 IN NUMBER
43 , p_org_id                  IN NUMBER
44 , p_item_id                 IN NUMBER
45 , p_need_by_date            IN DATE
46 , p_ship_to_organization_id IN NUMBER
47 , p_account_id              IN NUMBER
48 , p_tax_code_id             IN OUT NOCOPY NUMBER
49 , p_transaction_quantity    IN NUMBER
50 , p_po_price                IN NUMBER
51 , x_tax_rate                OUT NOCOPY NUMBER
52 , x_tax_recovery_rate       OUT NOCOPY NUMBER
53 , x_recoverable_tax         OUT NOCOPY NUMBER
54 , x_nonrecoverable_tax      OUT NOCOPY NUMBER
55 );
56 
57 END INV_THIRD_PARTY_STOCK_AP_MDTR;