DBA Data[Home] [Help]

APPS.BENUTILS dependencies on FND_PROFILE

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

5299: ELSIF l_ref_perd_cd = 'NOVAL' THEN
5300: l_ret_amount := (p_amount*l_factor)/1;
5301: ELSIF l_ref_perd_cd = 'PHR' then
5302: --
5303: l_pay_annualization_factor := to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR'));
5304: if l_pay_annualization_factor is null then
5305: l_pay_annualization_factor := 2080;
5306: end if;
5307: --

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

5384: ELSIF l_ref_perd_cd = 'NOVAL' THEN
5385: l_ret_amount := (p_amount*1)/l_factor;
5386: ELSIF l_ref_perd_cd = 'PHR' then
5387: --
5388: l_pay_annualization_factor := to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR'));
5389: if l_pay_annualization_factor is null then
5390: l_pay_annualization_factor := 2080;
5391: end if;
5392: --

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

5416: l_factor := 2;
5417: elsif p_acty_ref_perd_cd = 'MO' THEN
5418: l_factor := 12;
5419: elsif p_acty_ref_perd_cd = 'PHR' then
5420: l_factor := nvl(to_number(fnd_profile.value('BEN_HRLY_ANAL_FCTR')),2080);
5421: else
5422: -- 'NOVAL', 'PYR', null , or anything else
5423: l_factor := 1;
5424: end if;

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

5454: hr_utility.set_location('Entering '||l_proc, 999);
5455: --
5456: -- check if the profile is set with PAP group
5457: --
5458: fnd_profile.get_specific( name_z => 'ACTION_PARAMETER_GROUPS'
5459: ,user_id_z => fnd_global.user_id
5460: ,responsibility_id_z => fnd_global.resp_id
5461: ,application_id_z => fnd_global.resp_appl_id
5462: ,val_z => l_profile_value

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

5818: --
5819: begin
5820: --
5821: if benutils.g_ben_dspl_name_basis is null then
5822: benutils.g_ben_dspl_name_basis := fnd_profile.value('BEN_DSPL_NAME_BASIS');
5823: end if;
5824: --
5825: if l_session_date is null then
5826: open c_session_date;

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

6091: return varchar2
6092: is
6093: name_profile varchar2(2000);
6094: begin
6095: fnd_profile.get (p_profile_name, name_profile);
6096: return name_profile;
6097: end get_profile;
6098: --
6099: