DBA Data[Home] [Help]

APPS.PER_ZA_WSP_XML_GEN_PKG dependencies on DBMS_LOB

Line 1053: dbms_lob.createtemporary(p_xml, true);

1049: update_atr_data(rec.legal_entity_id, p_payroll_action_id);
1050: end loop;
1051:
1052: -- Update out variable p_xml and release xml dom
1053: dbms_lob.createtemporary(p_xml, true);
1054: xmldom.writeToClob(g_xml_dom, p_xml);
1055: xmldom.freeDocument(g_xml_dom);
1056: -- open the file p_xml
1057: -- Why ? In the Core wrapper package(PAY_XML_GEN_PKG) this is being closed

Line 1058: dbms_lob.open(p_xml, dbms_lob.lob_readonly);

1054: xmldom.writeToClob(g_xml_dom, p_xml);
1055: xmldom.freeDocument(g_xml_dom);
1056: -- open the file p_xml
1057: -- Why ? In the Core wrapper package(PAY_XML_GEN_PKG) this is being closed
1058: dbms_lob.open(p_xml, dbms_lob.lob_readonly);
1059:
1060: hr_utility.set_location('Leaving ' || l_proc, 10);
1061:
1062: -- hr_utility.trace_off;