DBA Data[Home] [Help]

APPS.HRENTMNT dependencies on HR_ENTRY_API

Line 1120: -- api call hr_entry_api.insert_element_entry.

1116: end;
1117: --
1118: -- Retrieve all entry values for the element entry and convert into screen
1119: -- format. Store these in a table to be used later by the element entry
1120: -- api call hr_entry_api.insert_element_entry.
1121: --
1122: for v_entry_value in csr_entry_values(p_element_entry_id,
1123: p_date) loop
1124: --

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

2156: -- make sure EL piece overlaps validation period
2157: --
2158: -- Bugfix 4627931
2159: -- Ensure the EL exists as at the validation start date.
2160: -- This is because hr_entry_api expects the EL to exist as at this date
2161: -- and raises error APP-PAY-07027 if it does not.
2162: -- Also, we should not re-create entries after there has been any gap in
2163: -- eligibility after the validation start date.
2164: and p_validation_start_date between el.effective_start_date and el.effective_end_date

Line 2417: hr_entry_api.insert_element_entry(

2413: end;
2414: hr_utility.trace('After:l_original_entry_id: '||l_original_entry_id);
2415: /* Bug 14184639 Changes end */
2416: --
2417: hr_entry_api.insert_element_entry(
2418: p_effective_start_date => l_calc_ee_esd,
2419: p_effective_end_date => l_ee_eed_out,
2420: p_element_entry_id => l_eeid_out,
2421: p_original_entry_id => l_original_entry_id, -- Bug fix 12364433

Line 5405: hr_entry_api.insert_element_entry

5401: --
5402: if g_debug then
5403: hr_utility.trace('Original_entry_id : ' || v_distinct_entry_id);
5404: end if;
5405: hr_entry_api.insert_element_entry
5406: (p_effective_start_date => v_calc_entry_start_date,
5407: p_effective_end_date => v_dummy_date,
5408: p_element_entry_id => v_element_entry_id,
5409: p_original_entry_id => v_distinct_entry_id,

Line 5531: hr_entry_api.insert_element_entry

5527: if g_debug then
5528: hr_utility.trace('********** ASG criteria delta');
5529: hr_utility.trace('********** for SL call EE insert interface');
5530: end if;
5531: hr_entry_api.insert_element_entry
5532: (p_effective_start_date => v_calc_entry_start_date,
5533: p_effective_end_date => v_dummy_date,
5534: p_element_entry_id => v_element_entry_id,
5535: p_assignment_id => p_assignment_id,

Line 7214: hr_entry_api.insert_element_entry

7210: if g_debug then
7211: hr_utility.trace('********** SL creation');
7212: hr_utility.trace('********** for SL call EE insert interface');
7213: end if;
7214: hr_entry_api.insert_element_entry
7215: (p_effective_start_date => v_entry_start_date,
7216: p_effective_end_date => v_entry_end_date,
7217: p_element_entry_id => v_dummy_number,
7218: p_assignment_id => v_asg_id,

Line 7989: -- hr_entry_api.move_fpd_entries --

7985: --
7986:
7987: ------------------------------------------------------------------------------
7988: -- NAME --
7989: -- hr_entry_api.move_fpd_entries --
7990: -- --
7991: -- DESCRIPTION --
7992: -- This procedure should be called from HR code to carry out entry changes --
7993: -- when final process date is changed. --