DBA Data[Home] [Help]

APPS.HR_GENERAL dependencies on FND_PROFILE

Line 136: usage of fnd_profile.value_wnps to use

132: cxsimpso 28-DEC-99 115.21 Added get_validation_name function.
133: smcmilla 29-DEC-99 115.22 Added product id 453 to
134: core_hr_app_id function (HRI)
135: mbocutt 03/01/2000 115.23 1125512 Change get_business_group_id. Replace
136: usage of fnd_profile.value_wnps to use
137: fnd_profile.value. This routine writes
138: the profile value to cache thus aiding
139: performance.
140: alogue 14/02/2000 115.24 Utf8 support.

Line 137: fnd_profile.value. This routine writes

133: smcmilla 29-DEC-99 115.22 Added product id 453 to
134: core_hr_app_id function (HRI)
135: mbocutt 03/01/2000 115.23 1125512 Change get_business_group_id. Replace
136: usage of fnd_profile.value_wnps to use
137: fnd_profile.value. This routine writes
138: the profile value to cache thus aiding
139: performance.
140: alogue 14/02/2000 115.24 Utf8 support.
141: hsajja 21/02/2000 115.25 Included function DECODE_SHARED_TYPE

Line 453: return(fnd_profile.value('PER_BUSINESS_GROUP_ID'));

449:
450: if ( fnd_global.user_id = -1 ) then
451: return(null);
452: else
453: return(fnd_profile.value('PER_BUSINESS_GROUP_ID'));
454: end if;
455:
456: end get_business_group_id ;
457: --------------------------------------------------------------------------------

Line 1458: l_security_profile_id:=fnd_profile.value('PER_SECURITY_PROFILE_ID');

1454: hr_utility.raise_error;
1455: end;
1456: -- check that the security profile business group matches the
1457: -- set business group.
1458: l_security_profile_id:=fnd_profile.value('PER_SECURITY_PROFILE_ID');
1459: --
1460: open sec_bg;
1461: fetch sec_bg into l_security_business_group_id;
1462: if sec_bg%notfound then

Line 1596: FND_PROFILE.GET('PER_ENABLE_DTW4',

1592: hr_utility.set_location('Entering:'|| l_proc, 1);
1593: --
1594: -- Get the profile value for the PER_ENABLE_DTW4.
1595: --
1596: FND_PROFILE.GET('PER_ENABLE_DTW4',
1597: l_dtw4_profile_option_value);
1598: --
1599: IF hr_utility.chk_product_install(p_product =>'Oracle Payroll',
1600: p_legislation => 'US') OR

Line 1841: fnd_profile.get('HR_POSITION_NAME',l_hr_pos_name_profile_value);

1837: -- Only open the cursor if the parameter is going to retrieve anything
1838: --
1839: if p_position_id is not null then
1840: --
1841: fnd_profile.get('HR_POSITION_NAME',l_hr_pos_name_profile_value);
1842: --
1843: if l_hr_pos_name_profile_value is null or l_hr_pos_name_profile_value = 'L' then
1844: --
1845: open csr_latest_position;

Line 2172: return( fnd_profile.value('HR_CROSS_BUSINESS_GROUP') );

2168: or fnd_global.per_security_profile_id = -1 )
2169: then
2170: return 'Y' ;
2171: else
2172: return( fnd_profile.value('HR_CROSS_BUSINESS_GROUP') );
2173: end if;
2174:
2175: end get_xbg_profile;
2176: --------------------------------------------------------------