DBA Data[Home] [Help]

PACKAGE: APPS.WSH_INV_INTEGRATION_GRP

Source


1 PACKAGE WSH_INV_INTEGRATION_GRP AUTHID CURRENT_USER AS
2 /* $Header: WSHINVIS.pls 115.2 2003/07/08 01:42:22 heali ship $ */
3 
4 
5    G_PRINTERTAB   WSH_UTIL_CORE.Column_Tab_Type ;
6    G_ORGTAB       WSH_UTIL_CORE.Column_Tab_Type ;
7    G_ORGSUBTAB    WSH_UTIL_CORE.Column_Tab_Type ;
8 
9    PROCEDURE Find_Printer (
10       p_subinventory               IN         VARCHAR2 ,
11       p_organization_id            IN         NUMBER ,
12       x_api_status                 OUT NOCOPY VARCHAR2,
13       x_error_message              OUT NOCOPY VARCHAR2
14    )  ;
15 
16 
17 
18    /*
19    Procedure :Complete_Inv_Interface
20    Description: This procedure will be called by Inventory during processing of the data from their interface
21                 tables.The purpose of this procedure is to update the inventory_interfaced_flag on
22                 wsh_delivery_details to 'Y' if inventory interface process has completed successfully
23                 and also to update the pending_interface_flag for the corresponding trip stops to NULL.
24    */
25    PROCEDURE Complete_Inv_Interface(
26         p_api_version_number    IN NUMBER,
27         p_init_msg_list         IN VARCHAR2,
28         p_commit                IN VARCHAR2 DEFAULT FND_API.G_FALSE,
29         p_txn_header_id         IN NUMBER,
30         p_txn_batch_id          IN NUMBER,
31         x_return_status         OUT NOCOPY VARCHAR2,
32         x_msg_count             OUT NOCOPY NUMBER,
33         x_msg_data              OUT NOCOPY VARCHAR2
34    ) ;
35 
36 
37 END WSH_INV_INTEGRATION_GRP  ;