DBA Data[Home] [Help]

APPS.FND_FILE dependencies on UTL_RAW

Line 297: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));

293: end if;
294:
295: else
296: if ( WTYPE = 'PUT' ) then
297: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));
298: elsif (WTYPE = 'PUT_LINE' ) then
299: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));
300: utl_file.put_raw(log_f, RAW_TERM);
301: elsif (WTYPE = 'NEW_LINE') then

Line 299: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));

295: else
296: if ( WTYPE = 'PUT' ) then
297: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));
298: elsif (WTYPE = 'PUT_LINE' ) then
299: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));
300: utl_file.put_raw(log_f, RAW_TERM);
301: elsif (WTYPE = 'NEW_LINE') then
302: for i in 1 .. to_number(BUFF) loop
303: utl_file.put_raw(log_f, RAW_TERM);

Line 348: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));

344: else
345: utl_file.put(log_f, BUFF);
346: end if;
347: else
348: utl_file.put_raw(log_f, utl_raw.cast_to_raw(BUFF));
349: if FUNC = 'PUT_LINE' then
350: utl_file.put_raw(log_f, RAW_TERM);
351: end if;
352: end if;

Line 662: RAW_TERM:=utl_raw.cast_to_raw('

658:
659: begin
660:
661: -- sets ascii character for the newline. DO NOT edit the lines below!!
662: RAW_TERM:=utl_raw.cast_to_raw('
663: ');
664: -- sets ascii character for the newline. DO NOT edit the lines above!!
665:
666: