DBA Data[Home] [Help]

APPS.CEP_STANDARD dependencies on CEP_STANDARD

Line 1: package body CEP_STANDARD AS

1: package body CEP_STANDARD AS
2: /* $Header: ceseutlb.pls 120.24.12010000.2 2008/08/10 14:27:59 csutaria ship $ */
3: /*-------------------------------------------------------------------------+
4: | |
5: | PRIVATE VARIABLES |

Line 475: cep_standard.debug('Parsed sucessfully');

471: DBMS_SQL.Parse(l_cursor_id,
472: l_final_query,
473: DBMS_SQL.v7);
474:
475: cep_standard.debug('Parsed sucessfully');
476:
477: l_exec_id := DBMS_SQL.execute(l_cursor_id);
478: l_row := DBMS_SQL.FETCH_ROWS(l_cursor_id);
479: DBMS_SQL.CLOSE_CURSOR(l_cursor_id);

Line 485: cep_standard.debug('EXCEPTION - OTHERS: check_bat_security');

481: RETURN l_row;
482:
483: EXCEPTION
484: WHEN OTHERS THEN
485: cep_standard.debug('EXCEPTION - OTHERS: check_bat_security');
486: IF DBMS_SQL.IS_OPEN(l_cursor_id) THEN
487: DBMS_SQL.CLOSE_CURSOR(l_cursor_id);
488: cep_standard.debug('Cursor Closed');
489: END IF;

Line 488: cep_standard.debug('Cursor Closed');

484: WHEN OTHERS THEN
485: cep_standard.debug('EXCEPTION - OTHERS: check_bat_security');
486: IF DBMS_SQL.IS_OPEN(l_cursor_id) THEN
487: DBMS_SQL.CLOSE_CURSOR(l_cursor_id);
488: cep_standard.debug('Cursor Closed');
489: END IF;
490: RAISE;
491: END check_ba_security;
492:

Line 609: end CEP_STANDARD;

605: /* begin code added for the bug 7125240 */
606: Begin
607: g_debug := FND_PROFILE.value('CE_DEBUG') ;
608:
609: end CEP_STANDARD;