DBA Data[Home] [Help]

APPS.IRC_JPS_GENERATOR dependencies on DBMS_XMLQUERY

Line 18: ctx DBMS_XMLQUERY.ctxType;

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

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

360: end loop;
361: hr_utility.set_location('Created the Stylesheet',20);
362: end if;
363: hr_utility.set_location('Executing the query',21);
364: ctx:= dbms_xmlquery.newContext(l_query);
365: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);
366: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
367: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
368: clobdoc:=dbms_xmlquery.getXML(ctx);

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

361: hr_utility.set_location('Created the Stylesheet',20);
362: end if;
363: hr_utility.set_location('Executing the query',21);
364: ctx:= dbms_xmlquery.newContext(l_query);
365: dbms_xmlquery.setBindValue(ctx,'1',p_person_id);
366: dbms_xmlquery.setTagCase(ctx,dbms_xmlquery.LOWER_CASE);
367: dbms_xmlquery.setRowsetTag(ctx,'jobpositionseeker');
368: clobdoc:=dbms_xmlquery.getXML(ctx);
369: hr_utility.set_location('Retrieved the XML data',22);

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

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

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

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

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

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

Line 370: dbms_xmlquery.closeContext(ctx);

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