DBA Data[Home] [Help]

APPS.HRENTMNT dependencies on FND_PROFILE

Line 1990: fnd_profile.get('HR_ELE_ENTRY_PURGE_CONTROL', l_prof_value);

1986: l_count number;
1987: l_non_payments_flag varchar2(30);
1988: begin
1989: -- Read the prof value.
1990: fnd_profile.get('HR_ELE_ENTRY_PURGE_CONTROL', l_prof_value);
1991: --
1992: -- See if profile is set in such a way that
1993: -- we need to perform validation.
1994: if l_prof_value is not null and l_prof_value <> 'A' then

Line 2316: fnd_profile.get('PAY_ORIG_EL_BEHAVE', l_prof_value);

2312: /*Bug 9295968 End */
2313: --
2314: -- Read the prof value
2315: --
2316: fnd_profile.get('PAY_ORIG_EL_BEHAVE', l_prof_value);
2317: if g_debug then
2318: hr_utility.trace('l_prof_value>' || l_prof_value || '<');
2319: end if;
2320: --

Line 3687: fnd_profile.get('HR_ELE_ENTRY_PURGE_CONTROL', l_prof_value);

3683:
3684: if(v_entry.effective_start_date>= p_validation_start_date) THEN
3685:
3686: -- Read the profile value.
3687: fnd_profile.get('HR_ELE_ENTRY_PURGE_CONTROL', l_prof_value);
3688:
3689: l_entry_processed := pay_paywsmee_pkg.processed(p_element_entry_id => v_entry.element_entry_id,
3690: p_original_entry_id => null,
3691: p_processing_type => 'N',

Line 4584: fnd_profile.get('HR_ADJUST_PROCESSED_NONREC_ENTRIES', l_prof_value);

4580: -- Added for Bug 8536385 - Controlling the adjustment of Processed non-recurring entries based on a profile value(If set to Y)
4581: -- If the entry is processed, then do not adjust the element entry
4582: -- Else, adjust the element entry
4583: -- Read the profile value.
4584: fnd_profile.get('HR_ADJUST_PROCESSED_NONREC_ENTRIES', l_prof_value);
4585:
4586: if nvl(l_prof_value,'Y') = 'N' then
4587: l_entry_processed := pay_paywsmee_pkg.processed(p_element_entry_id => v_entry.element_entry_id,
4588: p_original_entry_id => null,