DBA Data[Home] [Help]

APPS.IRC_JPS_GENERATOR dependencies on DBMS_XMLQUERY

Line 19: ctx DBMS_XMLQUERY.ctxType;

15: engine xslprocessor.Processor;
16: parser xmlparser.parser;
17: xmldoc xmldom.DOMDocument;
18: clobdoc CLOB;
19: ctx DBMS_XMLQUERY.ctxType;
20: tv_sheet utl_http.html_pieces;
21: l_index number;
22: begin
23:

Line 369: ctx:= dbms_xmlquery.newContext(l_query);

365: end if;
366: end if;
367:
368: hr_utility.set_location('Executing the query',21);
369: ctx:= dbms_xmlquery.newContext(l_query);
370: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);
371: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
372: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
373: clobdoc:=dbms_xmlquery.getXML(ctx);

Line 370: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);

366: end if;
367:
368: hr_utility.set_location('Executing the query',21);
369: ctx:= dbms_xmlquery.newContext(l_query);
370: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);
371: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
372: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
373: clobdoc:=dbms_xmlquery.getXML(ctx);
374: hr_utility.set_location('Retrieved the XML data',22);

Line 371: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);

367:
368: hr_utility.set_location('Executing the query',21);
369: ctx:= dbms_xmlquery.newContext(l_query);
370: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);
371: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
372: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
373: clobdoc:=dbms_xmlquery.getXML(ctx);
374: hr_utility.set_location('Retrieved the XML data',22);
375: dbms_xmlquery.closeContext(ctx);

Line 372: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');

368: hr_utility.set_location('Executing the query',21);
369: ctx:= dbms_xmlquery.newContext(l_query);
370: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);
371: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
372: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
373: clobdoc:=dbms_xmlquery.getXML(ctx);
374: hr_utility.set_location('Retrieved the XML data',22);
375: dbms_xmlquery.closeContext(ctx);
376: dbms_lob.createTemporary(l_formatted_doc,false,dbms_lob.call);

Line 373: clobdoc:=dbms_xmlquery.getXML(ctx);

369: ctx:= dbms_xmlquery.newContext(l_query);
370: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);
371: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
372: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
373: clobdoc:=dbms_xmlquery.getXML(ctx);
374: hr_utility.set_location('Retrieved the XML data',22);
375: dbms_xmlquery.closeContext(ctx);
376: dbms_lob.createTemporary(l_formatted_doc,false,dbms_lob.call);
377: hr_utility.set_location('Entering Parsing section',23);

Line 375: dbms_xmlquery.closeContext(ctx);

371: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
372: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
373: clobdoc:=dbms_xmlquery.getXML(ctx);
374: hr_utility.set_location('Retrieved the XML data',22);
375: dbms_xmlquery.closeContext(ctx);
376: dbms_lob.createTemporary(l_formatted_doc,false,dbms_lob.call);
377: hr_utility.set_location('Entering Parsing section',23);
378: parser:=xmlparser.newparser;
379: