DBA Data[Home] [Help]

APPS.OTA_UTILITY dependencies on PER_PEOPLE_F

Line 2195: from per_people_f p

2191:
2192: CURSOR c_person_fullname IS
2193: select
2194: p.full_name person_name
2195: from per_people_f p
2196: where
2197: p.person_id = p_user_id
2198: and sysdate between p.effective_start_date and p.effective_end_date;
2199:

Line 2234: from per_people_f p , fnd_user fus

2230:
2231: CURSOR c_person_fullname IS
2232: select
2233: p.full_name person_name
2234: from per_people_f p , fnd_user fus
2235: where p.person_id = fus.employee_id
2236: and
2237: fus.user_id = p_user_id;
2238: