DBA Data[Home] [Help]

APPS.POA_REPORT_UTIL dependencies on PER_ALL_PEOPLE_F

Line 681: FROM po_agents a, per_all_people_f b

677: FUNCTION Validate_SavingsBuyer(p_buyer_name IN VARCHAR2,
678: p_buyer_id OUT NOCOPY NUMBER) RETURN BOOLEAN IS
679: CURSOR c1 IS
680: SELECT b.person_id
681: FROM po_agents a, per_all_people_f b
682: WHERE a.agent_id = b.person_id
683: AND trunc(sysdate) between b.effective_start_date AND b.effective_end_date
684: AND b.full_name = p_buyer_name;
685: BEGIN