DBA Data[Home] [Help]

APPS.HR_TRANSACTION_SWI dependencies on XSLPROCESSOR

Line 545: xslprocessor.valueof(commitNode,attributeName,l_string);

541:
542: Begin
543: hr_utility.set_location(' Entering:' || l_proc,10);
544:
545: xslprocessor.valueof(commitNode,attributeName,l_string);
546: l_pos := instr(l_string, ' ', 1);
547: if(l_pos <> 0) then
548: l_string := substr(l_string,1,l_pos-1);
549: end if;

Line 574: xslprocessor.valueof(commitNode,attributeName,l_varchar2);

570: l_element xmldom.DOMElement;
571: l_proc varchar2(72) := g_package || 'getVarchar2Value';
572: Begin
573: hr_utility.set_location(' Entering:' || l_proc,10);
574: xslprocessor.valueof(commitNode,attributeName,l_varchar2);
575: l_element := xmldom.makeElement(commitNode);
576: -- l_isNull := xmldom.getAttribute(l_element, 'null');
577: l_isNull := getAttributeValue (commitNode,attributeName,'null');
578: if l_isNull = 'true' then

Line 598: xslprocessor.valueof(commitNode,attributeName,l_number);

594: l_element xmldom.DOMElement;
595: l_proc varchar2(72) := g_package || 'getNumberValue';
596: Begin
597: hr_utility.set_location(' Entering:' || l_proc,10);
598: xslprocessor.valueof(commitNode,attributeName,l_number);
599: l_element := xmldom.makeElement(commitNode);
600: -- l_isNull := xmldom.getAttribute(l_element, 'null');
601: l_isNull := getAttributeValue (commitNode,attributeName,'null');
602: if l_isNull = 'true' then