DBA Data[Home] [Help]

APPS.MSD_VALIDATE dependencies on FND_FILE

Line 20: fnd_file.put_line(fnd_file.output, replace(p_text, fnd_global.local_chr(0)));

16: v_cp_enabled NUMBER;
17: procedure write_output(p_text in varchar2) is
18: begin
19: /* remove occurences of null string and write to output */
20: fnd_file.put_line(fnd_file.output, replace(p_text, fnd_global.local_chr(0)));
21: /* dbms_output.put_line(p_text);
22: insert into msd_test values(p_text);*/
23: end write_output;
24:

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

24:
25:
26: procedure write_log(p_text in varchar2) is
27: begin
28: fnd_file.put_line(fnd_file.log, p_text);
29: /*insert into msd_test values(p_text);*/
30: end write_log;
31:
32: