DBA Data[Home] [Help]

APPS.OKS_RENCON_PVT dependencies on FND_CONCURRENT

Line 2788: l_dummy := FND_CONCURRENT.set_completion_status('WARNING', null);

2784:
2785: --set the x_return_status depending on any warnings or errors during line copy
2786: IF l_errors THEN
2787: x_return_status := OKC_API.g_ret_sts_warning;
2788: l_dummy := FND_CONCURRENT.set_completion_status('WARNING', null);
2789: log_messages('Some lines where not copied');
2790: ELSIF l_warnings THEN
2791: x_return_status := OKC_API.g_ret_sts_warning;
2792: l_dummy := FND_CONCURRENT.set_completion_status('WARNING', null);

Line 2792: l_dummy := FND_CONCURRENT.set_completion_status('WARNING', null);

2788: l_dummy := FND_CONCURRENT.set_completion_status('WARNING', null);
2789: log_messages('Some lines where not copied');
2790: ELSIF l_warnings THEN
2791: x_return_status := OKC_API.g_ret_sts_warning;
2792: l_dummy := FND_CONCURRENT.set_completion_status('WARNING', null);
2793: log_messages('Some lines where copied with warnings');
2794: ELSE
2795: x_return_status := FND_API.g_ret_sts_success;
2796: l_dummy := FND_CONCURRENT.set_completion_status('NORMAL', null);

Line 2796: l_dummy := FND_CONCURRENT.set_completion_status('NORMAL', null);

2792: l_dummy := FND_CONCURRENT.set_completion_status('WARNING', null);
2793: log_messages('Some lines where copied with warnings');
2794: ELSE
2795: x_return_status := FND_API.g_ret_sts_success;
2796: l_dummy := FND_CONCURRENT.set_completion_status('NORMAL', null);
2797: END IF;
2798:
2799: --log all the error and warning messages the CP log file
2800: IF (l_errors OR l_warnings) AND (p_conc_program = 'Y') THEN

Line 2822: l_dummy := FND_CONCURRENT.set_completion_status('ERROR', null);

2818: WHEN FND_API.g_exc_error THEN
2819: ROLLBACK TO submit_PVT;
2820: x_return_status := FND_API.g_ret_sts_error ;
2821: retcode := 2;
2822: l_dummy := FND_CONCURRENT.set_completion_status('ERROR', null);
2823:
2824: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
2825: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_error', 'x_return_status='||x_return_status);
2826: END IF;

Line 2851: l_dummy := FND_CONCURRENT.set_completion_status('ERROR', null);

2847: WHEN FND_API.g_exc_unexpected_error THEN
2848: ROLLBACK TO submit_PVT;
2849: x_return_status := FND_API.g_ret_sts_unexp_error ;
2850: retcode := 2;
2851: l_dummy := FND_CONCURRENT.set_completion_status('ERROR', null);
2852:
2853: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
2854: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_unexpected_error', 'x_return_status='||x_return_status);
2855: END IF;

Line 2880: l_dummy := FND_CONCURRENT.set_completion_status('ERROR', null);

2876: WHEN OTHERS THEN
2877: ROLLBACK TO submit_PVT;
2878: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2879: retcode := 2;
2880: l_dummy := FND_CONCURRENT.set_completion_status('ERROR', null);
2881: errbuf := SQLCODE || SQLERRM;
2882:
2883: IF (FND_LOG.level_unexpected >= FND_LOG.g_current_runtime_level) THEN
2884: FND_LOG.string(FND_LOG.level_unexpected, l_mod_name || '.end_other_error', errbuf);