DBA Data[Home] [Help]

APPS.INV_MO_PURGE dependencies on FND_CONCURRENT

Line 464: l_ret_msg := fnd_concurrent.set_completion_status('NORMAL', 'NORMAL');

460: );
461:
462: COMMIT;
463: --return sucess
464: l_ret_msg := fnd_concurrent.set_completion_status('NORMAL', 'NORMAL');
465: x_retcode := retcode_success;
466: x_errbuf := NULL;
467: EXCEPTION
468: WHEN fnd_api.g_exc_error THEN

Line 475: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');

471: IF (l_debug = 1) THEN
472: inv_trx_util_pub.TRACE('The Error Is '|| error, 'INVMOPG', 9);
473: END IF;
474:
475: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');
476: x_retcode := retcode_error;
477: x_errbuf := fnd_msg_pub.get(p_encoded => fnd_api.g_false);
478: WHEN fnd_api.g_exc_unexpected_error THEN
479: error := SQLERRM;

Line 485: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');

481: IF (l_debug = 1) THEN
482: inv_trx_util_pub.TRACE('The Error Is '|| error, 'INVMOPG', 9);
483: END IF;
484:
485: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');
486: x_retcode := retcode_error;
487: x_errbuf := fnd_msg_pub.get(p_encoded => fnd_api.g_false);
488: WHEN OTHERS THEN
489: error := SQLERRM;

Line 495: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');

491: IF (l_debug = 1) THEN
492: inv_trx_util_pub.TRACE('The Error Is '|| error, 'INVMOPG', 9);
493: END IF;
494:
495: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');
496: x_retcode := retcode_error;
497: x_errbuf := fnd_msg_pub.get(p_encoded => fnd_api.g_false);
498:
499: IF mo_lines%ISOPEN THEN