DBA Data[Home] [Help]

PACKAGE: APPS.WMS_ASN_INTERFACE

Source


1 PACKAGE WMS_ASN_INTERFACE  AS
2 /* $Header: WMSASNIS.pls 120.1 2005/05/25 17:10:59 appldev  $ */
3 
4 
5 /*
6 ** -------------------------------------------------------------------------
7 ** Function:    process
8 ** Description: Processes ASN information out of WMS_LPN_CONTENTS_INTERFACE
9 **		into WMS_LPN_CONTENTS
10 ** Output:
11 **      x_return_status
12 **              return status indicating success, error, unexpected error
13 **      x_msg_count
14 **              number of messages in message list
15 **      x_msg_data
16 **              if the number of messages in message list is 1, contains
17 **              message text
18 ** Input:
19 **      p_interface_transaction_id
20 **        Interface Transaction Id of record in RCV_TRANSACTIONS_INTERFACE
21 **        whose ASN information is being processed by Receiving Transactions
22 **        Manager's pre-processor. process API will work on all records
23 **	  in WMS_LPN_CONTENTS_INTERFACE that have this interface_transaction_id.
24 ** Returns:
25 **	None
26 ** --------------------------------------------------------------------------
27 */
28 
29 procedure process (
30   x_return_status               OUT NOCOPY VARCHAR2
31 , x_msg_count                   OUT NOCOPY NUMBER
32 , x_msg_data                    OUT NOCOPY VARCHAR2
33 , p_interface_transaction_id    IN  NUMBER );
34 
35 end WMS_ASN_INTERFACE;