DBA Data[Home] [Help]

APPS.HR_XML_UTIL dependencies on HR_XML_UTIL

Line 1: PACKAGE BODY HR_XML_UTIL as

1: PACKAGE BODY HR_XML_UTIL as
2: /* $Header: hrxmlutl.pkb 120.1 2005/10/03 12:50:24 smallina noship $*/
3: --
4: -- -------------------------------------------------------------------------
5: -- |----------------------------< valueOf >---------------------------------|

Line 41: retval:=hr_xml_util.value_Of(xmldoc,xpath);

37: parser:=xmlparser.newParser;
38: xmlparser.parseClob(parser,doc);
39: xmldoc:=xmlparser.getDocument(parser);
40: xmlparser.freeParser(parser);
41: retval:=hr_xml_util.value_Of(xmldoc,xpath);
42: xmldom.freeDocument(xmldoc);
43: return retval;
44: exception
45: when others then

Line 70: retval:=hr_xml_util.value_Of(xmldoc,xpath);

66: parser:=xmlparser.newParser;
67: xmlparser.parseBuffer(parser,doc);
68: xmldoc:=xmlparser.getDocument(parser);
69: xmlparser.freeParser(parser);
70: retval:=hr_xml_util.value_Of(xmldoc,xpath);
71: xmldom.freeDocument(xmldoc);
72: return retval;
73: Exception
74: when others then

Line 448: END hr_xml_util;

444: -- Return the Record of Primary Keys
445: return pk_rec;
446: End get_Primary_Keys;
447:
448: END hr_xml_util;