DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_COMPILE dependencies on FND_FILE

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

15717: message IN VARCHAR2,
15718: newline IN BOOLEAN DEFAULT TRUE) IS
15719: BEGIN
15720: IF message = 'NEWLINE' THEN
15721: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
15722: ELSIF (newline) THEN
15723: FND_FILE.put_line(fnd_file.output,message);
15724: ELSE
15725: FND_FILE.put(fnd_file.output,message);

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

15719: BEGIN
15720: IF message = 'NEWLINE' THEN
15721: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
15722: ELSIF (newline) THEN
15723: FND_FILE.put_line(fnd_file.output,message);
15724: ELSE
15725: FND_FILE.put(fnd_file.output,message);
15726: END IF;
15727: END out;

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

15721: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
15722: ELSIF (newline) THEN
15723: FND_FILE.put_line(fnd_file.output,message);
15724: ELSE
15725: FND_FILE.put(fnd_file.output,message);
15726: END IF;
15727: END out;
15728:
15729: /**

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

15734: newline IN BOOLEAN DEFAULT TRUE
15735: ) IS
15736: BEGIN
15737: IF message = 'NEWLINE' THEN
15738: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
15739: ELSIF (newline) THEN
15740: FND_FILE.put_line(fnd_file.log,message);
15741: ELSE
15742: FND_FILE.put(fnd_file.log,message);

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

15736: BEGIN
15737: IF message = 'NEWLINE' THEN
15738: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
15739: ELSIF (newline) THEN
15740: FND_FILE.put_line(fnd_file.log,message);
15741: ELSE
15742: FND_FILE.put(fnd_file.log,message);
15743: END IF;
15744: END log;

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

15738: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
15739: ELSIF (newline) THEN
15740: FND_FILE.put_line(fnd_file.log,message);
15741: ELSE
15742: FND_FILE.put(fnd_file.log,message);
15743: END IF;
15744: END log;
15745:
15746: /**