DBA Data[Home] [Help]

APPS.HZ_MATCH_RULE_COMPILE dependencies on FND_FILE

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

15775: message IN VARCHAR2,
15776: newline IN BOOLEAN DEFAULT TRUE) IS
15777: BEGIN
15778: IF message = 'NEWLINE' THEN
15779: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
15780: ELSIF (newline) THEN
15781: FND_FILE.put_line(fnd_file.output,message);
15782: ELSE
15783: FND_FILE.put(fnd_file.output,message);

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

15777: BEGIN
15778: IF message = 'NEWLINE' THEN
15779: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
15780: ELSIF (newline) THEN
15781: FND_FILE.put_line(fnd_file.output,message);
15782: ELSE
15783: FND_FILE.put(fnd_file.output,message);
15784: END IF;
15785: END out;

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

15779: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
15780: ELSIF (newline) THEN
15781: FND_FILE.put_line(fnd_file.output,message);
15782: ELSE
15783: FND_FILE.put(fnd_file.output,message);
15784: END IF;
15785: END out;
15786:
15787: /**

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

15792: newline IN BOOLEAN DEFAULT TRUE
15793: ) IS
15794: BEGIN
15795: IF message = 'NEWLINE' THEN
15796: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
15797: ELSIF (newline) THEN
15798: FND_FILE.put_line(fnd_file.log,message);
15799: ELSE
15800: FND_FILE.put(fnd_file.log,message);

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

15794: BEGIN
15795: IF message = 'NEWLINE' THEN
15796: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
15797: ELSIF (newline) THEN
15798: FND_FILE.put_line(fnd_file.log,message);
15799: ELSE
15800: FND_FILE.put(fnd_file.log,message);
15801: END IF;
15802: END log;

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

15796: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
15797: ELSIF (newline) THEN
15798: FND_FILE.put_line(fnd_file.log,message);
15799: ELSE
15800: FND_FILE.put(fnd_file.log,message);
15801: END IF;
15802: END log;
15803:
15804: /**