DBA Data[Home] [Help]

APPS.FND_HELP dependencies on FND_PROFILE

Line 294: helpAgent := fnd_profile.value('HELP_WEB_AGENT');

290: else
291: help_target := substr(target,1,delim-1) || '%23' || substr(target,delim+1);
292: end if;
293:
294: helpAgent := fnd_profile.value('HELP_WEB_AGENT');
295: if(helpAgent is null) then
296: help_url := fnd_profile.value('APPS_SERVLET_AGENT');
297:
298: if (help_url is null) then

Line 296: help_url := fnd_profile.value('APPS_SERVLET_AGENT');

292: end if;
293:
294: helpAgent := fnd_profile.value('HELP_WEB_AGENT');
295: if(helpAgent is null) then
296: help_url := fnd_profile.value('APPS_SERVLET_AGENT');
297:
298: if (help_url is null) then
299: return(null);
300: end if;

Line 313: hlc := fnd_profile.value('HELP_LOCALIZATION_CODE');

309: end if;
310:
311: paramChar := '?';
312:
313: hlc := fnd_profile.value('HELP_LOCALIZATION_CODE');
314: if (hlc is not null) then
315: hlc := '@'||hlc;
316: end if;
317:

Line 350: '&'||'group='||fnd_profile.value('HELP_TREE_ROOT')||':'||fnd_global.current_language|| '&'||'topic='||fnd_global.current_language||hlc||'/'||

346: ora_territory := substr(language,instr(language,'_')+1);
347:
348: return help_url || paramChar ||
349: 'locale='||UTL_I18N.MAP_LOCALE_TO_ISO(ora_language,ora_territory)||
350: '&'||'group='||fnd_profile.value('HELP_TREE_ROOT')||':'||fnd_global.current_language|| '&'||'topic='||fnd_global.current_language||hlc||'/'||
351: rapp||'/'||ind||help_target;
352:
353: end Get_Url;
354: