DBA Data[Home] [Help]

APPS.FND_OAM_DEBUG dependencies on DBMS_OUTPUT

Line 178: dbms_output.put_line('FND_OAM_DEBUG: Opened File Log: ('||l_tmp_dir||'/'||l_name||')');

174: l_name,
175: 'w');
176:
177: --Yields GSCC warning, ignore
178: dbms_output.put_line('FND_OAM_DEBUG: Opened File Log: ('||l_tmp_dir||'/'||l_name||')');
179:
180: b_style_file := TRUE;
181:
182: --if we're writing a header, go ahead and do that.

Line 272: -- indentation for a line. Uses underscore instead of space because dbms_output

268: END IF;
269: END;
270:
271: -- Private, helper to compute the leading underscore string representing
272: -- indentation for a line. Uses underscore instead of space because dbms_output
273: -- trims leading spaces.
274: FUNCTION MAKE_INDENT_STR
275: RETURN VARCHAR2
276: IS

Line 351: dbms_output.put_line(l_s);

347: TRUE);
348: END IF;
349: IF b_style_screen THEN
350: --Yields GSCC warning, ignore
351: dbms_output.put_line(l_s);
352: END IF;
353:
354: IF b_use_indentation AND l_indent_change IS NOT NULL AND l_indent_change < 0 THEN
355: b_indent_level := b_indent_level + l_indent_change;

Line 359: --dbms_output.put_line('internal_log failed');

355: b_indent_level := b_indent_level + l_indent_change;
356: END If;
357: EXCEPTION
358: WHEN OTHERS THEN
359: --dbms_output.put_line('internal_log failed');
360: NULL;
361: END;
362:
363: -- Public