DBA Data[Home] [Help]

APPS.HZ_LOCATION_PROFILE_PVT dependencies on FND_FILE

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

815: newline IN BOOLEAN DEFAULT TRUE
816: ) IS
817: BEGIN
818: IF message = 'NEWLINE' THEN
819: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
820: ELSIF (newline) THEN
821: FND_FILE.put_line(fnd_file.log,message);
822: ELSE
823: FND_FILE.put(fnd_file.log,message);

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

817: BEGIN
818: IF message = 'NEWLINE' THEN
819: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
820: ELSIF (newline) THEN
821: FND_FILE.put_line(fnd_file.log,message);
822: ELSE
823: FND_FILE.put(fnd_file.log,message);
824: END IF;
825: END log;

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

819: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
820: ELSIF (newline) THEN
821: FND_FILE.put_line(fnd_file.log,message);
822: ELSE
823: FND_FILE.put(fnd_file.log,message);
824: END IF;
825: END log;
826:
827: /*-----------------------------------------------------------------------