DBA Data[Home] [Help]

APPS.HR_EXTERNAL_APPLICATION dependencies on FND_PROFILE

Line 573: fnd_profile.value('HR_KPI_OPEN_NEW_WINDOW') = 'Y' );

569: -- The launch of external applications using Basic Authentication could
570: -- be made more seamless by opening a new window.
571: --
572: call_extapp(l_app_id,
573: fnd_profile.value('HR_KPI_OPEN_NEW_WINDOW') = 'Y' );
574:
575: IF( FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL ) THEN
576: FND_LOG.STRING (LOG_LEVEL => FND_LOG.LEVEL_PROCEDURE,
577: MODULE => g_module || '.' || l_procedure,

Line 682: select fnd_profile.value('HR_KPI_AGENT') into l_hr_ext_servlet

678: --Get dbc file
679: select fnd_web_config.database_id into l_dbc from dual;
680:
681: --First get the value from HR_EXT_AGENT
682: select fnd_profile.value('HR_KPI_AGENT') into l_hr_ext_servlet
683: from dual;
684: select fnd_profile.value('HR_KPI_GENFWK_SERVLET') into l_servlet
685: from dual;
686:

Line 684: select fnd_profile.value('HR_KPI_GENFWK_SERVLET') into l_servlet

680:
681: --First get the value from HR_EXT_AGENT
682: select fnd_profile.value('HR_KPI_AGENT') into l_hr_ext_servlet
683: from dual;
684: select fnd_profile.value('HR_KPI_GENFWK_SERVLET') into l_servlet
685: from dual;
686:
687: If l_hr_ext_servlet is null then
688: select fnd_profile.value('APPS_SERVLET_AGENT') into

Line 688: select fnd_profile.value('APPS_SERVLET_AGENT') into

684: select fnd_profile.value('HR_KPI_GENFWK_SERVLET') into l_servlet
685: from dual;
686:
687: If l_hr_ext_servlet is null then
688: select fnd_profile.value('APPS_SERVLET_AGENT') into
689: l_apps_servlet_agent from dual;
690: l_hr_ext_servlet :=l_apps_servlet_agent;
691: end if;
692:

Line 696: icx_sessions.login_id = to_number(fnd_profile.value('LOGIN_ID'));

692:
693: --Add custom seesion id and icx session_id
694: l_icx_ki_ids := l_icx_ki_ids || to_char(sysdate,'hh:mi:ss')||': ';
695: select SESSION_ID into l_session_id from icx_sessions where
696: icx_sessions.login_id = to_number(fnd_profile.value('LOGIN_ID'));
697:
698: l_icx_ki_ids := l_icx_ki_ids ||'&IcxSessionId='||icx_call.encrypt3(l_session_id);
699:
700: --Construct the URL

Line 712: IF ( nvl(fnd_profile.value('HR_KPI_OPEN_NEW_WINDOW'), 'Y') = 'Y' ) THEN

708: MESSAGE => 'l_url' || l_url);
709: END IF;
710:
711:
712: IF ( nvl(fnd_profile.value('HR_KPI_OPEN_NEW_WINDOW'), 'Y') = 'Y' ) THEN
713: -- Open a new window. Go back to the previous window
714: htp.script('window.open("' || l_url || '","newwindow");' ||
715: 'history.go(-1);',
716: 'javascript');