DBA Data[Home] [Help]

APPS.BENUTILS dependencies on FND_PROFILE

Line 5178: l_pay_annualization_factor := to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR'));

5174: ELSIF l_ref_perd_cd = 'NOVAL' THEN
5175: l_ret_amount := (p_amount*l_factor)/1;
5176: ELSIF l_ref_perd_cd = 'PHR' then
5177: --
5178: l_pay_annualization_factor := to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR'));
5179: if l_pay_annualization_factor is null then
5180: l_pay_annualization_factor := 2080;
5181: end if;
5182: --

Line 5263: l_pay_annualization_factor := to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR'));

5259: ELSIF l_ref_perd_cd = 'NOVAL' THEN
5260: l_ret_amount := (p_amount*1)/l_factor;
5261: ELSIF l_ref_perd_cd = 'PHR' then
5262: --
5263: l_pay_annualization_factor := to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR'));
5264: if l_pay_annualization_factor is null then
5265: l_pay_annualization_factor := 2080;
5266: end if;
5267: --

Line 5295: l_factor := nvl(to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR')),2080);

5291: l_factor := 2;
5292: elsif p_acty_ref_perd_cd = 'MO' THEN
5293: l_factor := 12;
5294: elsif p_acty_ref_perd_cd = 'PHR' then
5295: l_factor := nvl(to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR')),2080);
5296: else
5297: -- 'NOVAL', 'PYR', null , or anything else
5298: l_factor := 1;
5299: end if;

Line 5333: fnd_profile.get_specific( name_z => 'ACTION_PARAMETER_GROUPS'

5329: hr_utility.set_location('Entering '||l_proc, 999);
5330: --
5331: -- check if the profile is set with PAP group
5332: --
5333: fnd_profile.get_specific( name_z => 'ACTION_PARAMETER_GROUPS'
5334: ,user_id_z => fnd_global.user_id
5335: ,responsibility_id_z => fnd_global.resp_id
5336: ,application_id_z => fnd_global.resp_appl_id
5337: ,val_z => l_profile_value

Line 5697: benutils.g_ben_dspl_name_basis := fnd_profile.value('BEN_DSPL_NAME_BASIS');

5693: --
5694: begin
5695: --
5696: if benutils.g_ben_dspl_name_basis is null then
5697: benutils.g_ben_dspl_name_basis := fnd_profile.value('BEN_DSPL_NAME_BASIS');
5698: end if;
5699: --
5700: if l_session_date is null then
5701: open c_session_date;

Line 5970: fnd_profile.get (p_profile_name, name_profile);

5966: return varchar2
5967: is
5968: name_profile varchar2(2000);
5969: begin
5970: fnd_profile.get (p_profile_name, name_profile);
5971: return name_profile;
5972: end get_profile;
5973: --
5974: