DBA Data[Home] [Help]

APPS.INV_HV_TXN_PURGE dependencies on FND_CONCURRENT

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

955: RAISE fnd_api.g_exc_error;
956: END;
957:
958: --return sucess
959: l_ret_msg := fnd_concurrent.set_completion_status('NORMAL', 'NORMAL');
960: x_retcode := retcode_success;
961: x_errbuf := NULL;
962:
963: inv_trx_util_pub.TRACE('High Volume Transactions Purge completed sucessfully');

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

989: IF c_mta%ISOPEN THEN
990: CLOSE c_mta;
991: END IF;
992:
993: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');
994: x_retcode := retcode_error;
995: x_errbuf := fnd_msg_pub.get(p_encoded => fnd_api.g_false);
996:
997: WHEN fnd_api.g_exc_unexpected_error THEN

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

1019: IF c_mta%ISOPEN THEN
1020: CLOSE c_mta;
1021: END IF;
1022:
1023: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');
1024: x_retcode := retcode_error;
1025: x_errbuf := fnd_msg_pub.get(p_encoded => fnd_api.g_false);
1026:
1027: WHEN OTHERS THEN

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

1049: IF c_mta%ISOPEN THEN
1050: CLOSE c_mta;
1051: END IF;
1052:
1053: l_ret_msg := fnd_concurrent.set_completion_status('ERROR', 'ERROR');
1054: x_retcode := retcode_error;
1055: x_errbuf := fnd_msg_pub.get(p_encoded => fnd_api.g_false);
1056:
1057: END Txn_Purge;