DBA Data[Home] [Help]

APPS.ECX_STANDARD dependencies on DBMS_LOB

Line 542: dbms_lob.createtemporary(p_xmldoc,true,dbms_lob.session);

538:
539: -- VS - map_code = event_name WHY...Lets's discuss
540: -- map_code ect. should come from paramter list
541:
542: dbms_lob.createtemporary(p_xmldoc,true,dbms_lob.session);
543: map_code := wf_event.getValueForParameter('ECX_MAP_CODE',p_parameter_list);
544: debug_level := wf_event.getValueForParameter('ECX_DEBUG_LEVEL',p_parameter_list);
545: /** Which exception to use here for throwing the Error to BES **/
546: if (map_code is null ) then

Line 581: --dbms_lob.freetemporary(p_xmldoc);

577:
578: -- Removed for time being as the parameters are IN type only.
579: --wf_event.addParameterToList('ECX_ERROR_TYPE', ecx_utils.error_type,p_parameter_list);
580: --wf_event.addParameterToList('ECX_LOG_FILE', ecx_utils.g_logfile,p_parameter_list);
581: --dbms_lob.freetemporary(p_xmldoc);
582: return p_xmldoc;
583: exception
584: when others then
585: wf_core.context('ECX_STANDARD', 'Generate', p_event_name, p_event_key);

Line 2172: dbms_lob.trim(i_xml_file, 0);

2168: -- get the transformed xml from ecx_utils.g_xml_doc
2169: -- convert from DOMNode to clob and set it in original xmlfile
2170:
2171: /* Bug #2517237 : Trim the Clob before writing the transformed xml */
2172: dbms_lob.trim(i_xml_file, 0);
2173:
2174: xmlDOM.writeToClob(ecx_utils.g_xmldoc, i_xml_file);
2175:
2176: -- free all the used variables