DBA Data[Home] [Help]

APPS.ARP_XLA_EXTRACT_MAIN_PKG dependencies on FND_FILE

Line 383: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);

379: newline IN BOOLEAN DEFAULT TRUE) IS
380: BEGIN
381: IF NVL(fnd_global.CONC_REQUEST_ID,0) <> 0 THEN
382: IF message = 'NEWLINE' THEN
383: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
384: ELSIF (newline) THEN
385: FND_FILE.put_line(fnd_file.log,message);
386: ELSE
387: FND_FILE.put(fnd_file.log,message);

Line 385: FND_FILE.put_line(fnd_file.log,message);

381: IF NVL(fnd_global.CONC_REQUEST_ID,0) <> 0 THEN
382: IF message = 'NEWLINE' THEN
383: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
384: ELSIF (newline) THEN
385: FND_FILE.put_line(fnd_file.log,message);
386: ELSE
387: FND_FILE.put(fnd_file.log,message);
388: END IF;
389: END IF;

Line 387: FND_FILE.put(fnd_file.log,message);

383: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
384: ELSIF (newline) THEN
385: FND_FILE.put_line(fnd_file.log,message);
386: ELSE
387: FND_FILE.put(fnd_file.log,message);
388: END IF;
389: END IF;
390: END log;
391: