DBA Data[Home] [Help]

PACKAGE: APPS.WMS_REPL_CUSTOM_APIS_PUB

Source


1 PACKAGE WMS_REPL_CUSTOM_APIS_PUB AUTHID CURRENT_USER AS
2 /* $Header: WMSREPCS.pls 120.1 2010/07/29 17:15:08 sahmahes ship $  */
3 
4 
5 g_is_api_implemented BOOLEAN := FALSE;
6 
7 --********************************************************************************
8 --The procedure POST_REPL_ALLOCATION_CUST was added to provide access to
9 --demand lines to implement custom logic after replenishment code has processed it.
10 --One of the uses of this API can be to backorder the demand lines,
11 --that were assosciated with REPLENISHMENT Move order in case allocation
12 --of replenishment move orders was partial.
13 --*********************************************************************************
14 
15 PROCEDURE  POST_REPL_ALLOCATION_CUST (x_return_status        OUT NOCOPY VARCHAR2,
16    x_msg_count            OUT NOCOPY NUMBER,
17    x_msg_data             OUT NOCOPY VARCHAR2,
18    p_mol_id IN NUMBER);
19 
20 PROCEDURE  GET_CONSOL_REPL_DEMAND_CUST(x_return_status        OUT NOCOPY VARCHAR2,
21 				       x_msg_count            OUT NOCOPY NUMBER,
22 				       x_msg_data             OUT NOCOPY VARCHAR2,
23 				       x_consol_item_repl_tbl OUT NOCOPY WMS_REPLENISHMENT_PVT.CONSOL_ITEM_REPL_TBL);
24 
25 END WMS_REPL_CUSTOM_APIS_PUB;