DBA Data[Home] [Help]

APPS.CEP_STANDARD dependencies on 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 22: | Generate standard debug information sending it to dbms_output so that |

18: | PUBLIC PROCEDURE |
19: | debug - Print a debug message |
20: | |
21: | DESCRIPTION |
22: | Generate standard debug information sending it to dbms_output so that |
23: | the client tool can log it for the user. |
24: | |
25: | REQUIRES |
26: | line_of_text The line of text that will be displayed. |

Line 62: | Generate standard debug information sending it to dbms_output so that |

58: | PUBLIC PROCEDURE |
59: | enable_debug - Enable run time debugging |
60: | |
61: | DESCRIPTION |
62: | Generate standard debug information sending it to dbms_output so that |
63: | the client tool can log it for the user. |
64: | |
65: | REQUIRES |
66: | |

Line 98: arp_standard.enable_file_debug(path_name,file_name);

94: if (path_name is not null and file_name is not null) then
95: debug_flag := 'F';
96: ce_debug_pkg.enable_file_debug(path_name, file_name);
97: if (status = 'I') then
98: arp_standard.enable_file_debug(path_name,file_name);
99: end if;
100: else
101: debug_flag := 'S';
102: if (status = 'I') then

Line 103: arp_standard.enable_debug;

99: end if;
100: else
101: debug_flag := 'S';
102: if (status = 'I') then
103: arp_standard.enable_debug;
104: end if;
105: end if;
106: exception
107: when others then

Line 116: | Generate standard debug information sending it to dbms_output so that |

112: | PUBLIC PROCEDURE |
113: | disable_debug - Disable run time debugging |
114: | |
115: | DESCRIPTION |
116: | Generate standard debug information sending it to dbms_output so that |
117: | the client tool can log it for the user. |
118: | |
119: | REQUIRES |
120: | |

Line 146: arp_standard.disable_debug;

142: ce_debug_pkg.disable_file_debug;
143:
144: install := fnd_installation.get(222,222,status,industry);
145: if (status ='I') then
146: arp_standard.disable_debug;
147: arp_standard.disable_file_debug;
148: end if;
149: end if;
150: exception

Line 147: arp_standard.disable_file_debug;

143:
144: install := fnd_installation.get(222,222,status,industry);
145: if (status ='I') then
146: arp_standard.disable_debug;
147: arp_standard.disable_file_debug;
148: end if;
149: end if;
150: exception
151: when others then

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;