DBA Data[Home] [Help]

APPS.AR_UPGRADE_CASH_ACCRUAL dependencies on FND_FILE

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

27: newline IN BOOLEAN DEFAULT TRUE) IS
28: BEGIN
29: IF NVL(fnd_global.CONC_REQUEST_ID,0) <> 0 THEN
30: IF message = 'NEWLINE' THEN
31: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
32: ELSIF (newline) THEN
33: FND_FILE.put_line(fnd_file.log,message);
34: ELSE
35: FND_FILE.put(fnd_file.log,message);

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

29: IF NVL(fnd_global.CONC_REQUEST_ID,0) <> 0 THEN
30: IF message = 'NEWLINE' THEN
31: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
32: ELSIF (newline) THEN
33: FND_FILE.put_line(fnd_file.log,message);
34: ELSE
35: FND_FILE.put(fnd_file.log,message);
36: END IF;
37: ELSE

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

31: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
32: ELSIF (newline) THEN
33: FND_FILE.put_line(fnd_file.log,message);
34: ELSE
35: FND_FILE.put(fnd_file.log,message);
36: END IF;
37: ELSE
38: local_log(message);
39: END IF;