DBA Data[Home] [Help]

APPS.HZ_AUTOMERGE_PKG dependencies on FND_FILE

Line 15: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);

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

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

13: BEGIN
14: IF message = 'NEWLINE' THEN
15: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
16: ELSIF (newline) THEN
17: FND_FILE.put_line(fnd_file.output,message);
18: ELSE
19: FND_FILE.put(fnd_file.output,message);
20: END IF;
21: END out;

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

15: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
16: ELSIF (newline) THEN
17: FND_FILE.put_line(fnd_file.output,message);
18: ELSE
19: FND_FILE.put(fnd_file.output,message);
20: END IF;
21: END out;
22:
23: /**

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

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

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

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

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

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