DBA Data[Home] [Help]

APPS.INV_TRANSACTION_FLOW_PUB dependencies on FND_API

Line 15: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;

11: */
12:
13: G_PACKAGE_NAME CONSTANT VARCHAR2(30) := 'INV_TRANSACTION_FLOW_PUB';
14:
15: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
16: G_RET_STS_WARNING CONSTANT VARCHAR2(1) := 'W';
17: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
18:
19: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;

Line 17: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;

13: G_PACKAGE_NAME CONSTANT VARCHAR2(30) := 'INV_TRANSACTION_FLOW_PUB';
14:
15: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
16: G_RET_STS_WARNING CONSTANT VARCHAR2(1) := 'W';
17: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
18:
19: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
20:
21: G_TRUE CONSTANT VARCHAR2(1) := FND_API.G_TRUE;

Line 19: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;

15: G_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
16: G_RET_STS_WARNING CONSTANT VARCHAR2(1) := 'W';
17: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
18:
19: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
20:
21: G_TRUE CONSTANT VARCHAR2(1) := FND_API.G_TRUE;
22: G_FALSE CONSTANT VARCHAR2(1) := FND_API.G_FALSE;
23:

Line 21: G_TRUE CONSTANT VARCHAR2(1) := FND_API.G_TRUE;

17: G_RET_STS_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_ERROR;
18:
19: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
20:
21: G_TRUE CONSTANT VARCHAR2(1) := FND_API.G_TRUE;
22: G_FALSE CONSTANT VARCHAR2(1) := FND_API.G_FALSE;
23:
24: G_MISS_NUM CONSTANT NUMBER := FND_API.G_MISS_NUM;
25: -- Record type for inter-company transaction flow

Line 22: G_FALSE CONSTANT VARCHAR2(1) := FND_API.G_FALSE;

18:
19: G_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := FND_API.G_RET_STS_UNEXP_ERROR;
20:
21: G_TRUE CONSTANT VARCHAR2(1) := FND_API.G_TRUE;
22: G_FALSE CONSTANT VARCHAR2(1) := FND_API.G_FALSE;
23:
24: G_MISS_NUM CONSTANT NUMBER := FND_API.G_MISS_NUM;
25: -- Record type for inter-company transaction flow
26: TYPE mtl_transaction_flow_rec_type is RECORD

Line 24: G_MISS_NUM CONSTANT NUMBER := FND_API.G_MISS_NUM;

20:
21: G_TRUE CONSTANT VARCHAR2(1) := FND_API.G_TRUE;
22: G_FALSE CONSTANT VARCHAR2(1) := FND_API.G_FALSE;
23:
24: G_MISS_NUM CONSTANT NUMBER := FND_API.G_MISS_NUM;
25: -- Record type for inter-company transaction flow
26: TYPE mtl_transaction_flow_rec_type is RECORD
27: (
28: HEADER_ID NUMBER -- Transaction flow header ID

Line 131: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successfull and a transaction flow record

127: * Outputs:
128: * This API will return a table of records(x_transaction_flows_tbl) of all the nodes in between the
129: * Start Operating Unit and End Operating Unit, the pricing options,
130: * and the Inter-Company Relations information
131: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successfull and a transaction flow record
132: * is found.
133: * - This API will return G_RET_STS_WARNING if it is successful but no transaction flow record is
134: * found
135: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.

Line 135: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.

131: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successfull and a transaction flow record
132: * is found.
133: * - This API will return G_RET_STS_WARNING if it is successful but no transaction flow record is
134: * found
135: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.
136: * x_transaction_flows_tbl - table of records of all the nodes in between
137: * the Start Operating Unit and End Operating Unit, the pricing options,
138: * and the Inter-Company Relations information
139: *===================================================================================================*/

Line 202: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successfull and a transaction flow record

198: * Outputs:
199: * This API will return a table of records(x_transaction_flows_tbl) of all the nodes in between the
200: * Start Operating Unit and End Operating Unit, the pricing options,
201: * and the Inter-Company Relations information
202: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successfull and a transaction flow record
203: * is found.
204: * - This API will return G_RET_STS_WARNING if it is successful but no transaction flow record is
205: * found
206: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.

Line 206: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.

202: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successfull and a transaction flow record
203: * is found.
204: * - This API will return G_RET_STS_WARNING if it is successful but no transaction flow record is
205: * found
206: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.
207: * x_transaction_flows_tbl - table of records of all the nodes in between
208: * the Start Operating Unit and End Operating Unit, the pricing options,
209: * and the Inter-Company Relations information
210: *===================================================================================================*/

Line 278: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successful and a transaction flow record

274: *
275: * x_transaction_flow_exists - G_TRANSACTION_FLOW_FOUND or G_TRANSACTION_FLOW_NOT_FOUND
276: * x_header_id - header_id of the transaction flow found
277: * x_new_accounting_flag - new_accounting_flag indicating whether Inter-company Transaction Flow is used or not.
278: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successful and a transaction flow record
279: * is found.
280: * - This API will return G_RET_STS_WARNING if it is successful but no transaction flow record is
281: * found
282: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.

Line 282: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.

278: * x_return_status - this API will return FND_API.G_RET_STS_SUCESS if it is successful and a transaction flow record
279: * is found.
280: * - This API will return G_RET_STS_WARNING if it is successful but no transaction flow record is
281: * found
282: * - This API will return FND_API.G_RET_STS_ERROR,FND_API.G_RET_STS_UNEXP_ERROR on error.
283: *======================================================================================================*/
284: /*#
285: * This procedure will return true if an Inter-company Transaction Flow exists
286: * between the provided Start Operating Unit and End Operating Unit,

Line 303: * @param x_transaction_flow_exists return FND_API.G_RET_STS_SUCESS if transaction flow found

299: * @param x_msg_count return variable holding the number of error messages returned
300: * @param x_msg_data return variable holding the error message
301: * @param x_header_id return variable holding the header id of the transaction flow found
302: * @param x_new_accounting_flag return variable indicating whether advanced accounting is being used for the transaction flow
303: * @param x_transaction_flow_exists return FND_API.G_RET_STS_SUCESS if transaction flow found
304: * @rep:displayname Check Inter Company Transaction Flow
305: */
306: Procedure check_transaction_flow(
307: p_api_version IN NUMBER