DBA Data[Home] [Help]

APPS.CSE_DEBUG_PUB dependencies on CSE_DEBUG_PUB

Line 1: PACKAGE BODY cse_debug_pub AS

1: PACKAGE BODY cse_debug_pub AS
2: /* $Header: CSEPDBGB.pls 120.3 2006/08/16 20:21:33 brmanesh noship $ */
3:
4: l_debug varchar2(1) := nvl(fnd_profile.value('cse_debug_option'),'N');
5:

Line 42: cse_debug_pub.g_debug := TRUE;

38: IF g_file is null THEN
39: l_file := set_debug_file;
40: END IF;
41: g_file_ptr := utl_file.fopen(g_dir, g_file, 'a');
42: cse_debug_pub.g_debug := TRUE;
43: EXCEPTION
44: WHEN others THEN
45: null;
46: END debug_on;

Line 51: cse_debug_pub.g_debug := FALSE;

47:
48:
49: PROCEDURE debug_off IS
50: BEGIN
51: cse_debug_pub.g_debug := FALSE;
52: utl_file.fclose(g_file_ptr);
53: EXCEPTION
54: WHEN others THEN
55: null;

Line 61: RETURN(CSE_DEBUG_PUB.G_DEBUG);

57:
58:
59: FUNCTION isdebugon RETURN boolean IS
60: BEGIN
61: RETURN(CSE_DEBUG_PUB.G_DEBUG);
62: END isdebugon;
63:
64:
65: PROCEDURE set_debug_level(p_debug_level in number ) IS

Line 94: END cse_debug_pub;

90: WHEN others THEN
91: debug_off; -- Internal exception turn the debug off
92: END add; -- Add
93:
94: END cse_debug_pub;