DBA Data[Home] [Help]

APPS.AR_CREATE_ACCTING_SRS dependencies on FND_FILE

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

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

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

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

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

13: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
14: ELSIF (newline) THEN
15: FND_FILE.put_line(fnd_file.log,message);
16: ELSE
17: FND_FILE.put(fnd_file.log,message);
18: END IF;
19: END log;
20:
21: PROCEDURE out(

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

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

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

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

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

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