DBA Data[Home] [Help]

APPS.EAM_OTL_TIMECARD_PUB dependencies on PER_ALL_PEOPLE_F

Line 398: --fix for 3823899.use table per_all_people_f and check effectivity dates

394: begin
395:
396: if (p_instance_id is not null) then
397:
398: --fix for 3823899.use table per_all_people_f and check effectivity dates
399: select distinct full_name
400: into l_employee_name
401: from PER_ALL_PEOPLE_F
402: where person_id = p_instance_id

Line 401: from PER_ALL_PEOPLE_F

397:
398: --fix for 3823899.use table per_all_people_f and check effectivity dates
399: select distinct full_name
400: into l_employee_name
401: from PER_ALL_PEOPLE_F
402: where person_id = p_instance_id
403: and (EFFECTIVE_START_DATE is null or EFFECTIVE_START_DATE <= l_start_time)
404: and (EFFECTIVE_END_DATE is null or EFFECTIVE_END_DATE >= l_start_time)
405: and NVL(current_employee_flag,'N')='Y';