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 599: --xslprocessor.valueof(commitNode,attributeName,l_number);

595: l_proc varchar2(72) := g_package || 'getNumberValue';
596: Begin
597: hr_utility.set_location(' Entering:' || l_proc,10);
598: --Fix for Bug 7712861
599: --xslprocessor.valueof(commitNode,attributeName,l_number);
600: if(xslprocessor.valueof(commitNode,attributeName) is not NULL) then
601: l_number := fnd_number.canonical_to_number(xslprocessor.valueof(commitNode,attributeName));
602: end if;
603: l_element := xmldom.makeElement(commitNode);

Line 600: if(xslprocessor.valueof(commitNode,attributeName) is not NULL) then

596: Begin
597: hr_utility.set_location(' Entering:' || l_proc,10);
598: --Fix for Bug 7712861
599: --xslprocessor.valueof(commitNode,attributeName,l_number);
600: if(xslprocessor.valueof(commitNode,attributeName) is not NULL) then
601: l_number := fnd_number.canonical_to_number(xslprocessor.valueof(commitNode,attributeName));
602: end if;
603: l_element := xmldom.makeElement(commitNode);
604: -- l_isNull := xmldom.getAttribute(l_element, 'null');

Line 601: l_number := fnd_number.canonical_to_number(xslprocessor.valueof(commitNode,attributeName));

597: hr_utility.set_location(' Entering:' || l_proc,10);
598: --Fix for Bug 7712861
599: --xslprocessor.valueof(commitNode,attributeName,l_number);
600: if(xslprocessor.valueof(commitNode,attributeName) is not NULL) then
601: l_number := fnd_number.canonical_to_number(xslprocessor.valueof(commitNode,attributeName));
602: end if;
603: l_element := xmldom.makeElement(commitNode);
604: -- l_isNull := xmldom.getAttribute(l_element, 'null');
605: l_isNull := getAttributeValue (commitNode,attributeName,'null');