DBA Data[Home] [Help]

APPS.HRENTMNT dependencies on HR_ENTRY_API

Line 1260: -- api call hr_entry_api.insert_element_entry.

1256: end;
1257: --
1258: -- Retrieve all entry values for the element entry and convert into screen
1259: -- format. Store these in a table to be used later by the element entry
1260: -- api call hr_entry_api.insert_element_entry.
1261: --
1262: for v_entry_value in csr_entry_values(p_element_entry_id,
1263: p_date) loop
1264: --

Line 1880: -- This is because hr_entry_api expects the EL to exist as at this date

1876: -- make sure EL piece overlaps validation period
1877: --
1878: -- Bugfix 4627931
1879: -- Ensure the EL exists as at the validation start date.
1880: -- This is because hr_entry_api expects the EL to exist as at this date
1881: -- and raises error APP-PAY-07027 if it does not.
1882: -- Also, we should not re-create entries after there has been any gap in
1883: -- eligibility after the validation start date.
1884: and p_validation_start_date between el.effective_start_date and el.effective_end_date

Line 2087: hr_entry_api.insert_element_entry(

2083: p_validation_start_date);
2084: l_calc_ee_eed := least(p_ee_effective_end_date,
2085: rec_eligible_links.effective_end_date);
2086: --
2087: hr_entry_api.insert_element_entry(
2088: p_effective_start_date => l_calc_ee_esd,
2089: p_effective_end_date => l_ee_eed_out,
2090: p_element_entry_id => l_eeid_out,
2091: p_assignment_id => p_assignment_id,

Line 4633: hr_entry_api.insert_element_entry

4629: --
4630: if g_debug then
4631: hr_utility.trace('Original_entry_id : ' || v_distinct_entry_id);
4632: end if;
4633: hr_entry_api.insert_element_entry
4634: (p_effective_start_date => v_calc_entry_start_date,
4635: p_effective_end_date => v_dummy_date,
4636: p_element_entry_id => v_element_entry_id,
4637: p_original_entry_id => v_distinct_entry_id,

Line 4759: hr_entry_api.insert_element_entry

4755: if g_debug then
4756: hr_utility.trace('********** ASG criteria delta');
4757: hr_utility.trace('********** for SL call EE insert interface');
4758: end if;
4759: hr_entry_api.insert_element_entry
4760: (p_effective_start_date => v_calc_entry_start_date,
4761: p_effective_end_date => v_dummy_date,
4762: p_element_entry_id => v_element_entry_id,
4763: p_assignment_id => p_assignment_id,

Line 6304: hr_entry_api.insert_element_entry

6300: if g_debug then
6301: hr_utility.trace('********** SL creation');
6302: hr_utility.trace('********** for SL call EE insert interface');
6303: end if;
6304: hr_entry_api.insert_element_entry
6305: (p_effective_start_date => v_entry_start_date,
6306: p_effective_end_date => v_entry_end_date,
6307: p_element_entry_id => v_dummy_number,
6308: p_assignment_id => v_asg_id,

Line 6966: -- hr_entry_api.move_fpd_entries --

6962: --
6963:
6964: ------------------------------------------------------------------------------
6965: -- NAME --
6966: -- hr_entry_api.move_fpd_entries --
6967: -- --
6968: -- DESCRIPTION --
6969: -- This procedure should be called from HR code to carry out entry changes --
6970: -- when final process date is changed. --