DBA Data[Home] [Help]

APPS.INL_LANDEDCOST_PVT dependencies on FND_API

Line 10: L_FND_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_success; --Bug#9660084

6:
7: L_FND_EXC_ERROR EXCEPTION; --Bug#9660084
8: L_FND_EXC_UNEXPECTED_ERROR EXCEPTION; --Bug#9660084
9:
10: L_FND_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_success; --Bug#9660084
11: L_FND_RET_STS_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_error; --Bug#9660084
12: L_FND_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;--Bug#9660084
13:
14: -- Utility name : InLoop_Association

Line 11: L_FND_RET_STS_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_error; --Bug#9660084

7: L_FND_EXC_ERROR EXCEPTION; --Bug#9660084
8: L_FND_EXC_UNEXPECTED_ERROR EXCEPTION; --Bug#9660084
9:
10: L_FND_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_success; --Bug#9660084
11: L_FND_RET_STS_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_error; --Bug#9660084
12: L_FND_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;--Bug#9660084
13:
14: -- Utility name : InLoop_Association
15: -- Type : Private

Line 12: L_FND_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;--Bug#9660084

8: L_FND_EXC_UNEXPECTED_ERROR EXCEPTION; --Bug#9660084
9:
10: L_FND_RET_STS_SUCCESS CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_success; --Bug#9660084
11: L_FND_RET_STS_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_error; --Bug#9660084
12: L_FND_RET_STS_UNEXP_ERROR CONSTANT VARCHAR2(1) := fnd_api.g_ret_sts_unexp_error;--Bug#9660084
13:
14: -- Utility name : InLoop_Association
15: -- Type : Private
16: -- Function : If there are Associations in loop, this function will return TRUE,

Line 3313: IF FND_API.to_Boolean (p_init_msg_list) THEN

3309:
3310: --
3311: -- Initialize message list if p_init_msg_list is set to TRUE
3312: --
3313: IF FND_API.to_Boolean (p_init_msg_list) THEN
3314: FND_MSG_PUB.initialize;
3315: END IF;
3316:
3317: --

Line 3320: IF NOT FND_API.Compatible_API_Call (

3316:
3317: --
3318: -- Standard call to check for call compatibility
3319: --
3320: IF NOT FND_API.Compatible_API_Call (
3321: l_api_version,
3322: p_api_version,
3323: l_program_name,
3324: G_PKG_NAME)

Line 4052: IF FND_API.To_Boolean (p_commit) THEN

4048:
4049: --
4050: -- Standard check for commit
4051: --
4052: IF FND_API.To_Boolean (p_commit) THEN
4053: COMMIT WORK;
4054: END IF;
4055:
4056: -- Standard call to get message count and if count is 1, get message info.