DBA Data[Home] [Help]

APPS.HR_SECURITY dependencies on FND_PROFILE

Line 407: to_number(fnd_profile.value('XLA_MO_SECURITY_PROFILE_LEVEL')));

403: -- Get the security profile as set in the profile option
404: -- 'MO:Security Profile'.
405: --
406: OPEN csr_get_sec_prf(p_security_profile_id =>
407: to_number(fnd_profile.value('XLA_MO_SECURITY_PROFILE_LEVEL')));
408: FETCH csr_get_sec_prf INTO g_mo_context;
409: CLOSE csr_get_sec_prf;
410:
411: --

Line 746: nvl(fnd_profile.value('IRC_INSTALLED_FLAG'), 'N') = 'N') then

742: -- This function will return TRUE if iRecruitment is not installed
743: -- or view_all_candidates_flag is set to 'All'.
744: if (nvl(hr_signon.g_hr_security_profile.view_all_candidates_flag,
745: g_context.view_all_candidates_flag) = 'Y' or
746: nvl(fnd_profile.value('IRC_INSTALLED_FLAG'), 'N') = 'N') then
747: --
748: return true;
749: --
750: else

Line 1896: l_pv_org_id := to_number(fnd_profile.value('ORG_ID'));

1892: --
1893: -- The org security mode is operating unit only. Get the
1894: -- 'MO:Operating Unit' profile option.
1895: --
1896: l_pv_org_id := to_number(fnd_profile.value('ORG_ID'));
1897:
1898: --
1899: -- The value of the profile option 'MO:Operating Unit' is
1900: -- validated against p_org_id.

Line 1917: l_pv_org_id := to_number(fnd_profile.value('ORG_ID'));

1913: --
1914: -- The org_security_mode is operating unit and inventory orgs.
1915: -- Get the 'MO:Operating Unit' profile option.
1916: --
1917: l_pv_org_id := to_number(fnd_profile.value('ORG_ID'));
1918:
1919: --
1920: -- The value of the profile option 'MO:Operating Unit' is
1921: -- compared against p_org_id.