DBA Data[Home] [Help]

APPS.ARP_ACCT_EVENT_PKG dependencies on FND_FILE

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

8: message IN VARCHAR2,
9: newline IN BOOLEAN DEFAULT TRUE) IS
10: BEGIN
11: IF message = 'NEWLINE' THEN
12: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
13: ELSIF (newline) THEN
14: FND_FILE.put_line(fnd_file.log,message);
15: ELSE
16: FND_FILE.put(fnd_file.log,message);

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

10: BEGIN
11: IF message = 'NEWLINE' THEN
12: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
13: ELSIF (newline) THEN
14: FND_FILE.put_line(fnd_file.log,message);
15: ELSE
16: FND_FILE.put(fnd_file.log,message);
17: END IF;
18: IF PG_DEBUG = 'Y' THEN

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

12: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
13: ELSIF (newline) THEN
14: FND_FILE.put_line(fnd_file.log,message);
15: ELSE
16: FND_FILE.put(fnd_file.log,message);
17: END IF;
18: IF PG_DEBUG = 'Y' THEN
19: ARP_STANDARD.DEBUG(message);
20: END IF;

Line 28: FND_FILE.NEW_LINE(FND_FILE.output, 1);

24: message IN VARCHAR2,
25: newline IN BOOLEAN DEFAULT TRUE) IS
26: BEGIN
27: IF message = 'NEWLINE' THEN
28: FND_FILE.NEW_LINE(FND_FILE.output, 1);
29: ELSIF (newline) THEN
30: FND_FILE.put_line(fnd_file.output,message);
31: ELSE
32: FND_FILE.put(fnd_file.output,message);

Line 30: FND_FILE.put_line(fnd_file.output,message);

26: BEGIN
27: IF message = 'NEWLINE' THEN
28: FND_FILE.NEW_LINE(FND_FILE.output, 1);
29: ELSIF (newline) THEN
30: FND_FILE.put_line(fnd_file.output,message);
31: ELSE
32: FND_FILE.put(fnd_file.output,message);
33: END IF;
34: END out;

Line 32: FND_FILE.put(fnd_file.output,message);

28: FND_FILE.NEW_LINE(FND_FILE.output, 1);
29: ELSIF (newline) THEN
30: FND_FILE.put_line(fnd_file.output,message);
31: ELSE
32: FND_FILE.put(fnd_file.output,message);
33: END IF;
34: END out;
35:
36: PROCEDURE outandlog(