DBA Data[Home] [Help]

APPS.AZ_PLSQL_XML SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 116

function selectNodes
  (p_node                            in     xmldom.DOMNode
  ,p_xpath                           in     varchar2
  ) return xmldom.DOMNodeList is
begin
  return xslprocessor.selectNodes(p_node, p_xpath);
Line: 122

end selectNodes;
Line: 124

function selectNodes
  (p_doc                             in     xmldom.DOMDocument
  ,p_xpath                           in     varchar2
  ) return xmldom.DOMNodeList is
begin
  return selectNodes(toNode(p_doc), p_xpath);
Line: 130

end selectNodes;
Line: 239

     l_api_call_list := selectNodes(l_xmldoc, '/APICallSet/APICall');