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.29 2011/07/19 09:29:15 bkkashya 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 99: arp_standard.enable_file_debug(path_name,file_name);

95: debug_flag := 'F';
96: ce_debug_pkg.enable_file_debug(path_name, file_name);
97: /* Bug 7445326 - removed AR logging
98: if (status = 'I') then
99: arp_standard.enable_file_debug(path_name,file_name);
100: end if;*/
101: else
102: debug_flag := 'S';
103: /* Bug 7445326 - removed AR logging

Line 105: arp_standard.enable_debug;

101: else
102: debug_flag := 'S';
103: /* Bug 7445326 - removed AR logging
104: if (status = 'I') then
105: arp_standard.enable_debug;
106: end if;*/
107: end if;
108: exception
109: when others then

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

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

Line 148: arp_standard.disable_debug;

144: ce_debug_pkg.disable_file_debug;
145: /* - Bug 7445326 Removed ar logging
146: install := fnd_installation.get(222,222,status,industry);
147: if (status ='I') then
148: arp_standard.disable_debug;
149: arp_standard.disable_file_debug;
150: end if;
151: */
152: end if;

Line 149: arp_standard.disable_file_debug;

145: /* - Bug 7445326 Removed ar logging
146: install := fnd_installation.get(222,222,status,industry);
147: if (status ='I') then
148: arp_standard.disable_debug;
149: arp_standard.disable_file_debug;
150: end if;
151: */
152: end if;
153: exception

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

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

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

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

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

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

Line 619: end CEP_STANDARD;

615: /* begin code added for the bug 7125240 */
616: Begin
617: g_debug := FND_PROFILE.value('CE_DEBUG') ;
618:
619: end CEP_STANDARD;