DBA Data[Home] [Help]

APPS.HR_EX_EMPLOYEE_INTERNAL dependencies on PER_PERIODS_OF_SERVICE

Line 313: from per_periods_of_service

309: ,attribute4
310: ,attribute5
311: ,final_process_date
312: ,period_of_service_id
313: from per_periods_of_service
314: where period_of_service_id = p_period_of_service_id;
315: -- fix 1370960
316: cursor csr_roles_to_terminate( p_person_id in number ) is
317: select

Line 337: l_pds_rec per_periods_of_service%rowtype;

333: -- end fix 1370960
334:
335: --
336: --START WWBUG 2130950 HR/WF Synchronization --tpapired
337: l_pds_rec per_periods_of_service%rowtype;
338: cursor l_pds_cur is
339: select *
340: from per_periods_of_service
341: where period_of_service_id = p_period_of_service_id;

Line 340: from per_periods_of_service

336: --START WWBUG 2130950 HR/WF Synchronization --tpapired
337: l_pds_rec per_periods_of_service%rowtype;
338: cursor l_pds_cur is
339: select *
340: from per_periods_of_service
341: where period_of_service_id = p_period_of_service_id;
342: --END WWBUG 2130950 HR/WF Synchronization --tpapired
343: --
344: --