DBA Data[Home] [Help]

APPS.INL_MATCH_GRP dependencies on STANDARD

Line 41: -- Standard Beginning of Procedure/Function Logging

37: l_match_amount_int_id NUMBER;
38: l_parent_match_id NUMBER;
39:
40: BEGIN
41: -- Standard Beginning of Procedure/Function Logging
42: INL_LOGGING_PVT.Log_BeginProc (
43: p_module_name => g_module_name,
44: p_procedure_name => l_api_name
45: );

Line 47: -- Standard Start of API savepoint

43: p_module_name => g_module_name,
44: p_procedure_name => l_api_name
45: );
46:
47: -- Standard Start of API savepoint
48: SAVEPOINT Create_MatchIntLines_GRP;
49:
50: -- Initialize message list if p_init_msg_list is set to TRUE.
51: IF FND_API.to_Boolean( p_init_msg_list ) THEN

Line 168: -- Standard check of p_commit.

164: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
165: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
166: END IF;
167:
168: -- Standard check of p_commit.
169: IF FND_API.To_Boolean( p_commit ) THEN
170: COMMIT WORK;
171: END IF;
172:

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

169: IF FND_API.To_Boolean( p_commit ) THEN
170: COMMIT WORK;
171: END IF;
172:
173: -- Standard call to get message count and if count is 1, get message info.
174: FND_MSG_PUB.Count_And_Get(
175: p_encoded => FND_API.g_false,
176: p_count => x_msg_count,
177: p_data => x_msg_data

Line 180: -- Standard End of Procedure/Function Logging

176: p_count => x_msg_count,
177: p_data => x_msg_data
178: );
179:
180: -- Standard End of Procedure/Function Logging
181: INL_logging_pvt.Log_EndProc (
182: p_module_name => g_module_name,
183: p_procedure_name => l_api_name
184: );

Line 187: -- Standard Expected Error Logging

183: p_procedure_name => l_api_name
184: );
185: EXCEPTION
186: WHEN FND_API.G_EXC_ERROR THEN
187: -- Standard Expected Error Logging
188: INL_LOGGING_PVT.Log_ExpecError (
189: p_module_name => g_module_name,
190: p_procedure_name => l_api_name
191: );

Line 200: -- Standard Unexpected Error Logging

196: p_count => x_msg_count,
197: p_data => x_msg_data
198: );
199: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
200: -- Standard Unexpected Error Logging
201: INL_LOGGING_PVT.Log_UnexpecError (
202: p_module_name => g_module_name,
203: p_procedure_name => l_api_name
204: );

Line 213: -- Standard Unexpected Error Logging

209: p_count => x_msg_count,
210: p_data => x_msg_data
211: );
212: WHEN OTHERS THEN
213: -- Standard Unexpected Error Logging
214: INL_LOGGING_PVT.Log_UnexpecError (
215: p_module_name => g_module_name,
216: p_procedure_name => l_api_name
217: );

Line 329: -- Standard Beginning of Procedure/Function Logging

325: l_group_id NUMBER;
326:
327: BEGIN
328:
329: -- Standard Beginning of Procedure/Function Logging
330: INL_LOGGING_PVT.Log_BeginProc (
331: p_module_name => g_module_name,
332: p_procedure_name => l_proc_name
333: );

Line 446: -- Standard End of Procedure/Function Logging

442: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
443: END IF;
444: END LOOP;
445:
446: -- Standard End of Procedure/Function Logging
447: INL_logging_pvt.Log_EndProc (
448: p_module_name => g_module_name,
449: p_procedure_name => l_proc_name
450: );

Line 453: -- Standard Expected Error Logging

449: p_procedure_name => l_proc_name
450: );
451: EXCEPTION
452: WHEN FND_API.G_EXC_ERROR THEN
453: -- Standard Expected Error Logging
454: INL_LOGGING_PVT.Log_ExpecError (
455: p_module_name => g_module_name,
456: p_procedure_name => l_proc_name
457: );

Line 460: -- Standard Unexpected Error Logging

456: p_procedure_name => l_proc_name
457: );
458: x_return_status := FND_API.G_RET_STS_ERROR;
459: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
460: -- Standard Unexpected Error Logging
461: INL_LOGGING_PVT.Log_UnexpecError (
462: p_module_name => g_module_name,
463: p_procedure_name => l_proc_name
464: );

Line 467: -- Standard Unexpected Error Logging

463: p_procedure_name => l_proc_name
464: );
465: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
466: WHEN OTHERS THEN
467: -- Standard Unexpected Error Logging
468: INL_LOGGING_PVT.Log_UnexpecError (
469: p_module_name => g_module_name,
470: p_procedure_name => l_proc_name
471: );

Line 585: -- Standard Beginning of Procedure/Function Logging

581: l_invoices_with_charge_tbl inl_int_tbl;
582: l_count_invoices_with_charge NUMBER:=1;
583: BEGIN
584:
585: -- Standard Beginning of Procedure/Function Logging
586: INL_LOGGING_PVT.Log_BeginProc (p_module_name => g_module_name,
587: p_procedure_name => l_api_name);
588:
589: l_debug_info := 'Begining Create_MatchesFromAP';

Line 594: -- Standard Start of API savepoint

590: INL_LOGGING_PVT.Log_Statement (p_module_name => g_module_name,
591: p_procedure_name => l_api_name,
592: p_debug_info => l_debug_info);
593:
594: -- Standard Start of API savepoint
595: SAVEPOINT Create_MatchesFromAP_GRP;
596:
597: -- Initialize message list if p_init_msg_list is set to TRUE.
598: IF FND_API.to_Boolean( p_init_msg_list ) THEN

Line 781: -- Standard check of p_commit.

777: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
778: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
779: END IF;
780:
781: -- Standard check of p_commit.
782: IF FND_API.To_Boolean( p_commit ) THEN
783: COMMIT WORK;
784: END IF;
785:

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

782: IF FND_API.To_Boolean( p_commit ) THEN
783: COMMIT WORK;
784: END IF;
785:
786: -- Standard call to get message count and if count is 1, get message info.
787: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
788: p_count => x_msg_count,
789: p_data => x_msg_data);
790:

Line 791: -- Standard End of Procedure/Function Logging

787: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
788: p_count => x_msg_count,
789: p_data => x_msg_data);
790:
791: -- Standard End of Procedure/Function Logging
792: INL_logging_pvt.Log_EndProc (p_module_name => g_module_name,
793: p_procedure_name => l_api_name);
794: EXCEPTION
795: WHEN FND_API.G_EXC_ERROR THEN

Line 796: -- Standard Expected Error Logging

792: INL_logging_pvt.Log_EndProc (p_module_name => g_module_name,
793: p_procedure_name => l_api_name);
794: EXCEPTION
795: WHEN FND_API.G_EXC_ERROR THEN
796: -- Standard Expected Error Logging
797: INL_LOGGING_PVT.Log_ExpecError (p_module_name => g_module_name,
798: p_procedure_name => l_api_name);
799: ROLLBACK TO Create_MatchesFromAP_GRP;
800: x_return_status := FND_API.G_RET_STS_ERROR;

Line 805: -- Standard Unexpected Error Logging

801: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
802: p_count => x_msg_count,
803: p_data => x_msg_data);
804: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
805: -- Standard Unexpected Error Logging
806: INL_LOGGING_PVT.Log_UnexpecError (p_module_name => g_module_name,
807: p_procedure_name => l_api_name);
808: ROLLBACK TO Create_MatchesFromAP_GRP;
809: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

Line 815: -- Standard Unexpected Error Logging

811: FND_MSG_PUB.Count_And_Get(p_encoded => FND_API.g_false,
812: p_count => x_msg_count,
813: p_data => x_msg_data);
814: WHEN OTHERS THEN
815: -- Standard Unexpected Error Logging
816: INL_LOGGING_PVT.Log_UnexpecError (p_module_name => g_module_name,
817: p_procedure_name => l_api_name);
818: ROLLBACK TO Create_MatchesFromAP_GRP;
819: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;