DBA Data[Home] [Help]

APPS.AHL_UC_INSTANCE_PUB dependencies on STANDARD

Line 169: --Standard Start of API savepoint

165: BEGIN
166: --Initialize API return status to success
167: x_return_status := FND_API.G_RET_STS_SUCCESS;
168:
169: --Standard Start of API savepoint
170: SAVEPOINT unassociate_instance;
171:
172: --Standard call to check for call compatibility.
173: IF NOT FND_API.compatible_api_call(

Line 172: --Standard call to check for call compatibility.

168:
169: --Standard Start of API savepoint
170: SAVEPOINT unassociate_instance;
171:
172: --Standard call to check for call compatibility.
173: IF NOT FND_API.compatible_api_call(
174: l_api_version,
175: p_api_version,
176: l_api_name,

Line 331: --Standard Start of API savepoint

327: BEGIN
328: --Initialize API return status to success
329: x_return_status := FND_API.G_RET_STS_SUCCESS;
330:
331: --Standard Start of API savepoint
332: SAVEPOINT remove_instance;
333:
334: --Standard call to check for call compatibility.
335: IF NOT FND_API.compatible_api_call(

Line 334: --Standard call to check for call compatibility.

330:
331: --Standard Start of API savepoint
332: SAVEPOINT remove_instance;
333:
334: --Standard call to check for call compatibility.
335: IF NOT FND_API.compatible_api_call(
336: l_api_version,
337: p_api_version,
338: l_api_name,

Line 491: --Standard Start of API savepoint

487: BEGIN
488: --Initialize API return status to success
489: x_return_status := FND_API.G_RET_STS_SUCCESS;
490:
491: --Standard Start of API savepoint
492: SAVEPOINT update_instance;
493:
494: --Standard call to check for call compatibility.
495: IF NOT FND_API.compatible_api_call(

Line 494: --Standard call to check for call compatibility.

490:
491: --Standard Start of API savepoint
492: SAVEPOINT update_instance;
493:
494: --Standard call to check for call compatibility.
495: IF NOT FND_API.compatible_api_call(
496: l_api_version,
497: p_api_version,
498: l_api_name,

Line 631: --Standard Start of API savepoint

627: BEGIN
628: --Initialize API return status to success
629: x_return_status := FND_API.G_RET_STS_SUCCESS;
630:
631: --Standard Start of API savepoint
632: SAVEPOINT create_install_instance;
633:
634: --Standard call to check for call compatibility.
635: IF NOT FND_API.compatible_api_call(

Line 634: --Standard call to check for call compatibility.

630:
631: --Standard Start of API savepoint
632: SAVEPOINT create_install_instance;
633:
634: --Standard call to check for call compatibility.
635: IF NOT FND_API.compatible_api_call(
636: l_api_version,
637: p_api_version,
638: l_api_name,

Line 783: --Standard Start of API savepoint

779: BEGIN
780: --Initialize API return status to success
781: x_return_status := FND_API.G_RET_STS_SUCCESS;
782:
783: --Standard Start of API savepoint
784: SAVEPOINT install_instance;
785:
786: --Standard call to check for call compatibility.
787: IF NOT FND_API.compatible_api_call(

Line 786: --Standard call to check for call compatibility.

782:
783: --Standard Start of API savepoint
784: SAVEPOINT install_instance;
785:
786: --Standard call to check for call compatibility.
787: IF NOT FND_API.compatible_api_call(
788: l_api_version,
789: p_api_version,
790: l_api_name,

Line 961: --Standard Start of API savepoint

957: BEGIN
958: --Initialize API return status to success
959: x_return_status := FND_API.G_RET_STS_SUCCESS;
960:
961: --Standard Start of API savepoint
962: SAVEPOINT swap_instance;
963:
964: --Standard call to check for call compatibility.
965: IF NOT FND_API.compatible_api_call(

Line 964: --Standard call to check for call compatibility.

960:
961: --Standard Start of API savepoint
962: SAVEPOINT swap_instance;
963:
964: --Standard call to check for call compatibility.
965: IF NOT FND_API.compatible_api_call(
966: l_api_version,
967: p_api_version,
968: l_api_name,

Line 1140: -- Standard start of API savepoint

1136: IF (FND_LOG.level_procedure >= FND_LOG.g_current_runtime_level) THEN
1137: FND_LOG.string(FND_LOG.level_procedure,l_full_name,'Start of the API');
1138: END IF;
1139:
1140: -- Standard start of API savepoint
1141: SAVEPOINT create_unassigned_instance;
1142:
1143: -- Initialize Procedure return status to success
1144: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1146: -- Standard call to check for call compatibility

1142:
1143: -- Initialize Procedure return status to success
1144: x_return_status := FND_API.G_RET_STS_SUCCESS;
1145:
1146: -- Standard call to check for call compatibility
1147: IF NOT FND_API.Compatible_API_Call(l_api_version, p_api_version,
1148: l_api_name, G_PKG_NAME) THEN
1149: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1150: END IF;

Line 1188: -- Standard check of p_commit

1184: ELSIF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
1185: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1186: END IF;
1187:
1188: -- Standard check of p_commit
1189: IF FND_API.TO_BOOLEAN(p_commit) THEN
1190: COMMIT WORK;
1191: END IF;
1192:

Line 1193: -- Standard call to get message count and if count is 1, get message info

1189: IF FND_API.TO_BOOLEAN(p_commit) THEN
1190: COMMIT WORK;
1191: END IF;
1192:
1193: -- Standard call to get message count and if count is 1, get message info
1194: FND_MSG_PUB.Count_And_Get
1195: ( p_count => x_msg_count,
1196: p_data => x_msg_data,
1197: p_encoded => FND_API.G_FALSE