DBA Data[Home] [Help]

APPS.OKS_RENCON_PVT dependencies on FND_CONCURRENT

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

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

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

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

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

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

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

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

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

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

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

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