DBA Data[Home] [Help]

APPS.IEM_TEXT_PVT dependencies on FND_GLOBAL

Line 605: x_text:=ltrim(ltrim(l_text),fnd_global.local_chr(10));

601: l_text:=substr(l_text,1,2000);
602: if l_html_flag=1 then
603: ctx_doc.policy_filter('IEM_HTML_EXTRACT_POLICY',l_text,l_data,TRUE,null,null,null);
604: l_text:=dbms_lob.substr(l_data,dbms_lob.getlength(l_data),1);
605: x_text:=ltrim(ltrim(l_text),fnd_global.local_chr(10));
606: else
607: x_text:=ltrim(l_text,' '); --Return the plain text as is.
608: end if;
609: dbms_lob.freetemporary(l_data);