DBA Data[Home] [Help]

APPS.ITG_DEBUG dependencies on ITG_DEBUG

Line 1: PACKAGE BODY ITG_Debug AS

1: PACKAGE BODY ITG_Debug AS
2: /* ARCS: $Header: itgdbugb.pls 120.1 2005/10/06 02:03:28 bsaratna noship $
3: * CVS: itgdbugb.pls,v 1.17 2003/02/05 18:50:42 ecoe Exp
4: */
5:

Line 88: cln_debug_pub.Add('ITG Debug - ' || l_err || substrb(p_text,1,2000), 1);

84: l_err := '[ERROR] ';
85: END IF;
86:
87: IF l_debug_level <= 1 THEN
88: cln_debug_pub.Add('ITG Debug - ' || l_err || substrb(p_text,1,2000), 1);
89: END IF;
90:
91: IF p_error THEN
92: ITG_MSG.debug_more(substrb(p_text,1,2000));

Line 211: i := instr(l_text, ITG_Debug.G_ERROR_PREFIX);

207: RETURN;
208: END IF;
209: l_fh := UTL_FILE.fopen(l_dir_name, l_file_name, 'w');
210: WHILE l_text IS NOT NULL LOOP
211: i := instr(l_text, ITG_Debug.G_ERROR_PREFIX);
212: IF i > 0 THEN
213: l_text := substr(l_text, length(ITG_Debug.G_ERROR_PREFIX) + i);
214: END IF;
215: UTL_FILE.put_line(l_fh, l_text);

Line 213: l_text := substr(l_text, length(ITG_Debug.G_ERROR_PREFIX) + i);

209: l_fh := UTL_FILE.fopen(l_dir_name, l_file_name, 'w');
210: WHILE l_text IS NOT NULL LOOP
211: i := instr(l_text, ITG_Debug.G_ERROR_PREFIX);
212: IF i > 0 THEN
213: l_text := substr(l_text, length(ITG_Debug.G_ERROR_PREFIX) + i);
214: END IF;
215: UTL_FILE.put_line(l_fh, l_text);
216: FND_MSG_PUB.get(
217: p_msg_index => FND_MSG_PUB.G_NEXT,

Line 234: END ITG_Debug;

230: l_debug_level := to_number(nvl(fnd_profile.value('CLN_DEBUG_LEVEL'), '5'));
231: EXCEPTION
232: WHEN OTHERS THEN
233: NULL;
234: END ITG_Debug;