DBA Data[Home] [Help]

APPS.GL_FUSION_TRANSFER_PKG dependencies on FND_FILE

Line 182: fnd_file.put_line(fnd_file.log,p_msg);

178: --=============================================================================
179: PROCEDURE print_logfile(p_msg IN VARCHAR2) IS
180: BEGIN
181:
182: fnd_file.put_line(fnd_file.log,p_msg);
183:
184: END print_logfile;
185:
186: --=============================================================================

Line 199: fnd_file.put_line(fnd_file.log, substr(p_sqlstr, currpos, 2000));

195: currpos := 1;
196:
197: WHILE (currpos < strlen) LOOP
198:
199: fnd_file.put_line(fnd_file.log, substr(p_sqlstr, currpos, 2000));
200:
201: currpos := currpos + 2000;
202:
203: END LOOP;