DBA Data[Home] [Help]

PACKAGE: APPS.INV_DS_LOGICAL_TRX_INFO_PUB

Source


1 PACKAGE INV_DS_LOGICAL_TRX_INFO_PUB AUTHID CURRENT_USER AS
2 /* $Header: INVLTIPS.pls 115.3 2003/11/03 23:04:55 vipartha noship $ */
3 
4 -- Global constant holding the package name
5 G_PKG_NAME CONSTANT VARCHAR2(30) := 'INV_DS_LOGICAL_TRX_INFO_PUB';
6 
7 G_TRUE                 CONSTANT VARCHAR2(1) := FND_API.G_TRUE;
8 G_FALSE                CONSTANT VARCHAR2(1) := FND_API.G_FALSE;
9 G_RET_STS_SUCCESS      CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
10 G_RET_STS_ERROR        CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
11 G_RET_STS_UNEXP_ERROR  CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
12 
13 
14 /*==========================================================================*
15  | Procedure : GET_LOGICAL_ATTR_VALUES                                      |
16  |                                                                          |
17  | Description : This API will be called by Install base for a              |
18  |                 specific transafction to get all the attributes tied to  |
19  |                  a drop shipment so that they can update the inventory   |
20  |               accordingly                                                |
21  |                                                                          |
22  |                                                                          |
23  | Input Parameters :                                                       |
24  |   p_api_version_number - API version number                              |
25  |   p_init_msg_lst       - Whether initialize the error message list or not|
26  |                          Should be fnd_api.g_false or fnd_api.g_true     |
27  |   p_transaction_id     - transaction id of the inserted SO issue MMT     |
28  |                          record.                                         |
29  | Output Parameters :                                                      |
30  |   x_return_status      - fnd_api.g_ret_sts_success, if succeeded         |
31  |                          fnd_api.g_ret_sts_exc_error, if an expected     |
32  |                          error occurred                                  |
33  |                          fnd_api.g_ret_sts_unexp_error, if an unexpected |
34  |                          eror occurred                                   |
35  |   x_msg_count          - Number of error message in the error message    |
36  |                          list                                            |
37  |   x_msg_data           - If the number of error message in the error     |
38  |                          message list is one, the error message is in    |
39  |                          this output parameter                           |
40  |   x_logical_trx_attr_values - returns a record type with all the attributes|
41  |                                  for a logical transaction.              |
42  *==========================================================================*/
43    PROCEDURE GET_LOGICAL_ATTR_VALUES
44            (
45 	    x_return_status       OUT NOCOPY  VARCHAR2
46 	    , x_msg_count           OUT NOCOPY  NUMBER
47 	    , x_msg_data            OUT nocopy VARCHAR2
48 	    , x_logical_trx_attr_values  OUT NOCOPY INV_DROPSHIP_GLOBALS.logical_trx_attr_tbl
49 	    , p_api_version_number  IN          NUMBER   := 1.0
50 	    , p_init_msg_lst        IN          VARCHAR2 := G_FALSE
51 	    , p_transaction_id      IN          NUMBER
52 	    );
53 
54 
55 
56 END INV_DS_LOGICAL_TRX_INFO_PUB;
57