DBA Data[Home] [Help]

APPS.GMD_DEBUG dependencies on GMD_DEBUG

Line 1: PACKAGE BODY GMD_DEBUG AS

1: PACKAGE BODY GMD_DEBUG AS
2: /* $Header: GMDUDBGB.pls 120.1 2006/01/18 15:09:10 sxfeinst noship $ */
3: /*
4: REM *********************************************************************
5: REM *

Line 97: IF (p_file_name IS NOT NULL) AND (NVL(fnd_profile.value('GMD_DEBUG_ENABLED'),'N') = 'Y') THEN

93: G_FILE_NAME := p_file_name;
94: END IF;
95:
96: /* Bug # 4576699 Added code below for checking the Profile option and then logging messages */
97: IF (p_file_name IS NOT NULL) AND (NVL(fnd_profile.value('GMD_DEBUG_ENABLED'),'N') = 'Y') THEN
98:
99: global_file_name := p_file_name;
100:
101: OPEN c_get_1st_location;

Line 185: IF (global_file_name IS NOT NULL) AND (NVL(fnd_profile.value('GMD_DEBUG_ENABLED'),'N') = 'Y') THEN

181: END IF;
182: END IF;
183:
184: /* Bug # 4576699 Added code below for checking the Profile option and then logging messages */
185: IF (global_file_name IS NOT NULL) AND (NVL(fnd_profile.value('GMD_DEBUG_ENABLED'),'N') = 'Y') THEN
186:
187: IF global_gmdlog_location is NULL THEN
188: OPEN c_get_1st_location;
189: FETCH c_get_1st_location

Line 225: gmd_debug.put_line('Message '||to_char(p_msg_count)||' '||message);

221: p_data => message,
222: p_encoded => 'F',
223: p_msg_index_out => dummy
224: );
225: gmd_debug.put_line('Message '||to_char(p_msg_count)||' '||message);
226: END LOOP;
227:
228: END display_messages;
229:

Line 230: END GMD_DEBUG;

226: END LOOP;
227:
228: END display_messages;
229:
230: END GMD_DEBUG;