DBA Data[Home] [Help]

APPS.MSD_STRIPE_DEMAND_PLAN dependencies on FND_FILE

Line 426: fnd_file.put_line(fnd_file.log, p_text);

422: End;
423: --
424: Procedure show_message(p_text in varchar2) is
425: Begin
426: fnd_file.put_line(fnd_file.log, p_text);
427: -- dbms_output.put_line(p_text);
428: end;
429:
430: Procedure debug_out(p_text in varchar2) is

Line 434: fnd_file.put_line(fnd_file.output, substr(p_text, i, 90));

430: Procedure debug_out(p_text in varchar2) is
431: i number := 1;
432: Begin
433: while i<= length(p_text) loop
434: fnd_file.put_line(fnd_file.output, substr(p_text, i, 90));
435: -- dbms_output.put_line(substr(p_text, i, 90));
436: i := i+90;
437: end loop;
438: end;

Line 473: fnd_file.put_line(fnd_file.log, '');

469: End;
470: --
471: Procedure Blank_Line is
472: Begin
473: fnd_file.put_line(fnd_file.log, '');
474: -- dbms_output.put_line('');
475: End;
476: --
477: