DBA Data[Home] [Help]

APPS.PAY_CORE_FILES dependencies on UTL_RAW

Line 196: l_text := utl_raw.cast_to_varchar2(p_text);

192:
193: begin
194:
195: hr_utility.trace('Entering delete_mul_root_tag ');
196: l_text := utl_raw.cast_to_varchar2(p_text);
197: if g_source_type = 'PPA' then
198:
199:
200: if (substr(l_text,1,5) ='

Line 270: p_text := utl_raw.cast_to_raw(l_text);

266: end if;
267: /* End Bug 6795217 */
268:
269: end if;
270: p_text := utl_raw.cast_to_raw(l_text);
271: hr_utility.trace('Leaving delete_mul_root_tag ');
272:
273: end delete_mul_root_tag;
274:

Line 357: p_text:=utl_raw.cast_to_varchar2(raw_data);

353: p_size,
354: p_position,
355: raw_data
356: );
357: p_text:=utl_raw.cast_to_varchar2(raw_data);
358: --
359: exception
360: when no_data_found then
361: p_text := null;

Line 429: l_raw_text := utl_raw.cast_to_raw(p_text);

425: p_text
426: );
427:
428: /* Bug 6729909 Calling delete_mul_root_tag(p_text) to remove the top Level tag for merging of XML */
429: l_raw_text := utl_raw.cast_to_raw(p_text);
430: delete_mul_root_tag(l_raw_text);
431: p_text := utl_raw.cast_to_varchar2(l_raw_text);
432:
433: close_blob_direct;

Line 431: p_text := utl_raw.cast_to_varchar2(l_raw_text);

427:
428: /* Bug 6729909 Calling delete_mul_root_tag(p_text) to remove the top Level tag for merging of XML */
429: l_raw_text := utl_raw.cast_to_raw(p_text);
430: delete_mul_root_tag(l_raw_text);
431: p_text := utl_raw.cast_to_varchar2(l_raw_text);
432:
433: close_blob_direct;
434: /* commented for bug no 4775422
435: if (p_text is null or p_size <> l_size) then

Line 537: raw_data:=utl_raw.cast_to_raw(p_text);

533: lob_len number;
534: --
535: begin
536: --
537: raw_data:=utl_raw.cast_to_raw(p_text);
538: text_size:=utl_raw.length(raw_data);
539: hr_utility.trace('p_text size = ' || to_char(length(p_text)));
540: hr_utility.trace('raw_data Size = ' || text_size);
541:

Line 538: text_size:=utl_raw.length(raw_data);

534: --
535: begin
536: --
537: raw_data:=utl_raw.cast_to_raw(p_text);
538: text_size:=utl_raw.length(raw_data);
539: hr_utility.trace('p_text size = ' || to_char(length(p_text)));
540: hr_utility.trace('raw_data Size = ' || text_size);
541:
542: dbms_lob.write(g_file_list(p_file_id).file_locator,

Line 577: text_size:=utl_raw.length(raw_data);

573: begin
574: --
575: --
576: raw_data:= p_text;
577: text_size:=utl_raw.length(raw_data);
578: hr_utility.trace('p_text size = ' || to_char(length(p_text)));
579: hr_utility.trace('raw_data Size = ' || text_size);
580:
581: dbms_lob.write(g_file_list(p_file_id).file_locator,

Line 783: raw_data:=utl_raw.cast_to_raw(p_text);

779: is
780: text_size number;
781: raw_data raw(32767);
782: begin
783: raw_data:=utl_raw.cast_to_raw(p_text);
784: text_size:=utl_raw.length(raw_data);
785: dbms_lob.writeappend(pay_mag_tape.g_blob_value,
786: text_size,
787: raw_data

Line 784: text_size:=utl_raw.length(raw_data);

780: text_size number;
781: raw_data raw(32767);
782: begin
783: raw_data:=utl_raw.cast_to_raw(p_text);
784: text_size:=utl_raw.length(raw_data);
785: dbms_lob.writeappend(pay_mag_tape.g_blob_value,
786: text_size,
787: raw_data
788: );