DBA Data[Home] [Help]

APPS.BSC_AW_UTILITY dependencies on FND_FILE

Line 950: FND_FILE.PUT_LINE(FND_FILE.LOG,substr(p_message, l_start, 250));

946: last_reached:=true;
947: end if;
948: if p_new_line then
949: if p_type='LOG' then
950: FND_FILE.PUT_LINE(FND_FILE.LOG,substr(p_message, l_start, 250));
951: else
952: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,substr(p_message, l_start, 250));
953: end if;
954: else

Line 952: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,substr(p_message, l_start, 250));

948: if p_new_line then
949: if p_type='LOG' then
950: FND_FILE.PUT_LINE(FND_FILE.LOG,substr(p_message, l_start, 250));
951: else
952: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,substr(p_message, l_start, 250));
953: end if;
954: else
955: if p_type='LOG' then
956: FND_FILE.PUT(FND_FILE.LOG,substr(p_message, l_start, 250)||' ');

Line 956: FND_FILE.PUT(FND_FILE.LOG,substr(p_message, l_start, 250)||' ');

952: FND_FILE.PUT_LINE(FND_FILE.OUTPUT,substr(p_message, l_start, 250));
953: end if;
954: else
955: if p_type='LOG' then
956: FND_FILE.PUT(FND_FILE.LOG,substr(p_message, l_start, 250)||' ');
957: else
958: FND_FILE.PUT(FND_FILE.OUTPUT,substr(p_message, l_start, 250)||' ');
959: end if;
960: end if;

Line 958: FND_FILE.PUT(FND_FILE.OUTPUT,substr(p_message, l_start, 250)||' ');

954: else
955: if p_type='LOG' then
956: FND_FILE.PUT(FND_FILE.LOG,substr(p_message, l_start, 250)||' ');
957: else
958: FND_FILE.PUT(FND_FILE.OUTPUT,substr(p_message, l_start, 250)||' ');
959: end if;
960: end if;
961: l_start:=l_start+250;
962: if last_reached then

Line 995: FND_FILE.PUT_NAMES(p_object_name||'.log',p_object_name||'.out',l_dir);

991: end if;
992: if l_dir is null then
993: l_dir:='/sqlcom/log';
994: end if;
995: FND_FILE.PUT_NAMES(p_object_name||'.log',p_object_name||'.out',l_dir);
996: log('File Directory is '||l_dir);
997: if l_dir is null then
998: log('Please set profile option UTL_FILE_LOG to point to a valid directory the database can write to. Only then can you see the log files');
999: log('generated from parallel jobs(when Debug Mode is true) for load and aggregations');