DBA Data[Home] [Help]

APPS.IRC_JPS_GENERATOR dependencies on FND_PROFILE

Line 344: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||userenv('LANG')||'/'||p_stylesheet;

340: else
341: begin
342: hr_utility.set_location('Getting stylesheet from URL',15);
343:
344: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||userenv('LANG')||'/'||p_stylesheet;
345: tv_sheet:= irc_xml_util.http_get_pieces(l_stylesheet_url,100);
346:
347: if instr(lower(tv_sheet(1)),'1 then
348: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||p_stylesheet;

Line 348: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||p_stylesheet;

344: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||userenv('LANG')||'/'||p_stylesheet;
345: tv_sheet:= irc_xml_util.http_get_pieces(l_stylesheet_url,100);
346:
347: if instr(lower(tv_sheet(1)),'1 then
348: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||p_stylesheet;
349: tv_sheet:= irc_xml_util.http_get_pieces(l_stylesheet_url,100);
350: end if;
351: hr_utility.set_location('Got the stylesheet from the URL',16);
352:

Line 357: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||p_stylesheet;

353: exception when others then
354: hr_utility.set_location('Exception occured while getting stylesheet',17);
355: hr_utility.set_location('Exception: '||substrb(sqlerrm,1,160),18);
356: hr_utility.set_location('Exception: '||sqlcode,19);
357: l_stylesheet_url:=rtrim(fnd_profile.value('APPS_FRAMEWORK_AGENT'),'/')||'/OA_HTML/'||p_stylesheet;
358: tv_sheet:= irc_xml_util.http_get_pieces(l_stylesheet_url,100);
359: end;
360: lv_stylesheet:='';
361: for l_index in 1..tv_sheet.count loop

Line 381: if(fnd_profile.value('ICX_CLIENT_IANA_ENCODING') <> '') then

377: hr_utility.set_location('Entering Parsing section',23);
378: parser:=xmlparser.newparser;
379:
380: hr_utility.set_location('Setting encoding',231);
381: if(fnd_profile.value('ICX_CLIENT_IANA_ENCODING') <> '') then
382: clobdoc := replace(clobdoc, '?>', ' encoding = '''||fnd_profile.value('ICX_CLIENT_IANA_ENCODING')||'''?>');
383: end if;
384: hr_utility.set_location('Exiting after setting encoding',233);
385:

Line 382: clobdoc := replace(clobdoc, '?>', ' encoding = '''||fnd_profile.value('ICX_CLIENT_IANA_ENCODING')||'''?>');

378: parser:=xmlparser.newparser;
379:
380: hr_utility.set_location('Setting encoding',231);
381: if(fnd_profile.value('ICX_CLIENT_IANA_ENCODING') <> '') then
382: clobdoc := replace(clobdoc, '?>', ' encoding = '''||fnd_profile.value('ICX_CLIENT_IANA_ENCODING')||'''?>');
383: end if;
384: hr_utility.set_location('Exiting after setting encoding',233);
385:
386: xmlparser.parseCLOB(parser,clobdoc);