DBA Data[Home] [Help]

APPS.ARP_XLA_EXTRACT_MAIN_PKG dependencies on FND_FILE

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

40: newline IN BOOLEAN DEFAULT TRUE) IS
41: BEGIN
42: IF NVL(fnd_global.CONC_REQUEST_ID,0) <> 0 THEN
43: IF message = 'NEWLINE' THEN
44: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
45: ELSIF (newline) THEN
46: FND_FILE.put_line(fnd_file.log,message);
47: ELSE
48: FND_FILE.put(fnd_file.log,message);

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

42: IF NVL(fnd_global.CONC_REQUEST_ID,0) <> 0 THEN
43: IF message = 'NEWLINE' THEN
44: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
45: ELSIF (newline) THEN
46: FND_FILE.put_line(fnd_file.log,message);
47: ELSE
48: FND_FILE.put(fnd_file.log,message);
49: END IF;
50: END IF;

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

44: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
45: ELSIF (newline) THEN
46: FND_FILE.put_line(fnd_file.log,message);
47: ELSE
48: FND_FILE.put(fnd_file.log,message);
49: END IF;
50: END IF;
51: END log;
52: