DBA Data[Home] [Help]

APPS.ONT_IMPLICITCUSTACCEPT_PVT dependencies on FND_API

Line 173: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

169: );
170: END IF;
171:
172: EXCEPTION
173: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
174: FND_MESSAGE.SET_NAME(application=>'FND',name=>'FND_AS_UNEXPECTED_ERROR');
175: FND_MESSAGE.SET_TOKEN('error_text', SQLERRM(sqlcode));
176: FND_MESSAGE.SET_TOKEN('pkg_name' , G_PKG_NAME);
177: FND_MESSAGE.SET_TOKEN('procedure_name' , l_procedure_name );

Line 588: WHEN FND_API.G_EXC_UNEXPECTED_ERROR

584: IF l_debug_level > 0 THEN
585: oe_debug_pub.add('Implicit Acceptance: Process Order Error Msgs -> g_msg_data:'||g_msg_data);
586: END IF;
587: EXCEPTION
588: WHEN FND_API.G_EXC_UNEXPECTED_ERROR
589: THEN
590: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
591: g_errbuf := 'Unexpected Error while calling process order API: '||g_msg_data;
592: g_retcode := 2;

Line 590: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

586: END IF;
587: EXCEPTION
588: WHEN FND_API.G_EXC_UNEXPECTED_ERROR
589: THEN
590: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
591: g_errbuf := 'Unexpected Error while calling process order API: '||g_msg_data;
592: g_retcode := 2;
593: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ; --myerrams
594:

Line 593: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ; --myerrams

589: THEN
590: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
591: g_errbuf := 'Unexpected Error while calling process order API: '||g_msg_data;
592: g_retcode := 2;
593: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ; --myerrams
594:
595: WHEN FND_API.G_EXC_ERROR
596: THEN
597: -- RAISE FND_API.G_RET_STS_ERROR;

Line 595: WHEN FND_API.G_EXC_ERROR

591: g_errbuf := 'Unexpected Error while calling process order API: '||g_msg_data;
592: g_retcode := 2;
593: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ; --myerrams
594:
595: WHEN FND_API.G_EXC_ERROR
596: THEN
597: -- RAISE FND_API.G_RET_STS_ERROR;
598: g_errbuf := 'Error while calling process order API: '||g_msg_data;
599: g_retcode := 2;

Line 597: -- RAISE FND_API.G_RET_STS_ERROR;

593: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ; --myerrams
594:
595: WHEN FND_API.G_EXC_ERROR
596: THEN
597: -- RAISE FND_API.G_RET_STS_ERROR;
598: g_errbuf := 'Error while calling process order API: '||g_msg_data;
599: g_retcode := 2;
600: g_return_status := FND_API.G_RET_STS_ERROR;
601:

Line 600: g_return_status := FND_API.G_RET_STS_ERROR;

596: THEN
597: -- RAISE FND_API.G_RET_STS_ERROR;
598: g_errbuf := 'Error while calling process order API: '||g_msg_data;
599: g_retcode := 2;
600: g_return_status := FND_API.G_RET_STS_ERROR;
601:
602: WHEN OTHERS
603: THEN
604: g_errbuf := 'Others Exception while calling process order API: '||g_msg_data;

Line 606: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

602: WHEN OTHERS
603: THEN
604: g_errbuf := 'Others Exception while calling process order API: '||g_msg_data;
605: g_retcode := 2;
606: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
607: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
608: -- Do the status processing
609:
610: END call_process_order_api;

Line 607: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

603: THEN
604: g_errbuf := 'Others Exception while calling process order API: '||g_msg_data;
605: g_retcode := 2;
606: g_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
607: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
608: -- Do the status processing
609:
610: END call_process_order_api;
611: --=============================================================================