DBA Data[Home] [Help]

PACKAGE: APPS.JMF_SHIKYU_PO_PVT

Source


1 PACKAGE JMF_SHIKYU_PO_PVT AS
2 -- $Header: JMFVSKPS.pls 120.0.12010000.1 2008/07/21 09:23:49 appldev ship $ --
3 --+=======================================================================+
4 --|               Copyright (c) 2005 Oracle Corporation                   |
5 --|                       Redwood Shores, CA, USA                         |
6 --|                         All rights reserved.                          |
7 --+=======================================================================+
8 --| FILENAME                                                              |
9 --|     JMFPSHKS.pls                                                      |
10 --|                                                                       |
11 --| DESCRIPTION                                                           |
12 --|   This package contains PO related calls that the Interlock           |
13 --|   accesses when processing SHIKYU transactions                        |
14 --| HISTORY                                                               |
15 --|     05/09/2005 pseshadr       Created                                 |
16 --+========================================================================
17 
18 
19 --===================
20 -- PROCEDURES AND FUNCTIONS
21 --===================
22 
23 --========================================================================
24 -- PROCEDURE : Process_Replenishment_PO       PUBLIC
25 -- PARAMETERS: p_action              Action
26 --                                   'C'- Create new job
27 --                                   'D'- Delete Job
28 --                                   'U'- Update Job
29 --            x_return_status         Return Status
30 -- COMMENT   : This procedure populates data in the interface table
31 --             and creates a replenishment SO for the subcontracting
32 --             order shipment line
33 --========================================================================
34 PROCEDURE Process_Replenishment_PO
35 ( p_action                 IN  VARCHAR2
36 , p_subcontract_po_shipment_id IN NUMBER
37 , p_quantity               IN  NUMBER
38 , p_item_id                IN  NUMBER
39 , x_po_line_location_id    OUT NOCOPY NUMBER
40 , x_return_status          OUT NOCOPY VARCHAR2
41 );
42 
43 END JMF_SHIKYU_PO_PVT;