DBA Data[Home] [Help]

APPS.AML_PURGE_SALES_LEADS dependencies on FND_API

Line 241: WHEN FND_API.G_EXC_ERROR THEN

237: write_count;
238: aml_debug(2,'Purging sales leads completed successfully');
239:
240: EXCEPTION
241: WHEN FND_API.G_EXC_ERROR THEN
242: aml_debug(2,'Expected error');
243:
244: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
245: aml_debug(2,'Unexpected error');

Line 244: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

240: EXCEPTION
241: WHEN FND_API.G_EXC_ERROR THEN
242: aml_debug(2,'Expected error');
243:
244: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
245: aml_debug(2,'Unexpected error');
246:
247: WHEN others THEN
248: aml_debug(2,'SQLCODE ' || to_char(SQLCODE) ||

Line 252: retcode := FND_API.G_RET_STS_UNEXP_ERROR;

248: aml_debug(2,'SQLCODE ' || to_char(SQLCODE) ||
249: ' SQLERRM ' || substr(SQLERRM, 1, 100));
250:
251: errbuf := SQLERRM;
252: retcode := FND_API.G_RET_STS_UNEXP_ERROR;
253: l_status := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', SQLERRM);
254:
255: END Purge_Unqualified_Leads;
256: