DBA Data[Home] [Help]

APPS.MSD_STRIPE_DEMAND_PLAN dependencies on FND_FILE

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

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

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

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

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

472: End;
473: --
474: Procedure Blank_Line is
475: Begin
476: fnd_file.put_line(fnd_file.log, '');
477: -- dbms_output.put_line('');
478: End;
479: --
480: