DBA Data[Home] [Help]

APPS.ZX_TDS_PROCESS_CEC_PVT dependencies on APP_EXCEPTION

Line 260: app_exception.raise_exception;

256: IF (g_level_unexpected >= g_current_runtime_level ) THEN
257: FND_LOG.STRING(g_level_unexpected,
258: 'ZX.PLSQL.ZX_TDS_PROCESS_CEC_PVT.evaluate_cec_lines', 'Error Message: ' || sqlerrm);
259: END IF;
260: app_exception.raise_exception;
261: END;
262: if l_temp = 1 then
263: l_result := TRUE;
264: else

Line 349: app_exception.raise_exception;

345: EXECUTE IMMEDIATE 'BEGIN '||p_compiled_action||' END;' ;
346: END IF;
347:
348: if(pr_message_token is not null) then
349: app_exception.raise_exception;
350: end if;
351: EXCEPTION
352: WHEN OTHERS THEN
353: IF (g_level_statement >= g_current_runtime_level ) THEN

Line 358: app_exception.raise_exception;

354: FND_LOG.STRING(g_level_statement,
355: 'ZX.PLSQL.ZX_TDS_PROCESS_CEC_PVT.evaluate_cec_action',
356: 'Error Message: ' || sqlerrm);
357: END IF;
358: app_exception.raise_exception;
359: END;
360: end if;
361: IF (g_level_statement >= g_current_runtime_level ) THEN
362:

Line 2572: app_exception.raise_exception;

2568:
2569: when others then
2570: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2571:
2572: app_exception.raise_exception;
2573:
2574: end evaluate_cec;
2575:
2576: BEGIN