DBA Data[Home] [Help]

APPS.HZ_GNR_UTIL_PKG dependencies on FND_FILE

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

1330: message IN VARCHAR2,
1331: newline IN BOOLEAN DEFAULT TRUE) IS
1332: BEGIN
1333: IF message = 'NEWLINE' THEN
1334: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
1335: ELSIF (newline) THEN
1336: FND_FILE.put_line(fnd_file.output,message);
1337: ELSE
1338: FND_FILE.put(fnd_file.output,message);

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

1332: BEGIN
1333: IF message = 'NEWLINE' THEN
1334: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
1335: ELSIF (newline) THEN
1336: FND_FILE.put_line(fnd_file.output,message);
1337: ELSE
1338: FND_FILE.put(fnd_file.output,message);
1339: END IF;
1340: END out;

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

1334: FND_FILE.NEW_LINE(FND_FILE.OUTPUT, 1);
1335: ELSIF (newline) THEN
1336: FND_FILE.put_line(fnd_file.output,message);
1337: ELSE
1338: FND_FILE.put(fnd_file.output,message);
1339: END IF;
1340: END out;
1341: ----------------------------------------------
1342: /**

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

1347: message IN VARCHAR2,
1348: newline IN BOOLEAN DEFAULT TRUE) IS
1349: BEGIN
1350: IF message = 'NEWLINE' THEN
1351: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
1352: ELSIF (newline) THEN
1353: FND_FILE.put_line(fnd_file.log,message);
1354: ELSE
1355: FND_FILE.put_line(fnd_file.log,message);

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

1349: BEGIN
1350: IF message = 'NEWLINE' THEN
1351: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
1352: ELSIF (newline) THEN
1353: FND_FILE.put_line(fnd_file.log,message);
1354: ELSE
1355: FND_FILE.put_line(fnd_file.log,message);
1356: END IF;
1357: END log;

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

1351: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
1352: ELSIF (newline) THEN
1353: FND_FILE.put_line(fnd_file.log,message);
1354: ELSE
1355: FND_FILE.put_line(fnd_file.log,message);
1356: END IF;
1357: END log;
1358: ----------------------------------------------
1359: /**