DBA Data[Home] [Help]

APPS.OTA_NHS_BUS dependencies on PER_ALL_PEOPLE_F

Line 526: from per_all_people_f per

522: -- cursor to check is person id is belong to an organization.
523: --
524: cursor org_person is
525: select null
526: from per_all_people_f per
527: where per.business_group_id = p_business_group_id and
528: per.person_id = p_person_id and
529: rownum=1;
530: /* Bug 2356572

Line 538: from per_all_people_f per

534: */
535: /* For Globalization */
536: cursor org_person_cross is
537: select null
538: from per_all_people_f per
539: where per.person_id = p_person_id
540: and rownum=1;
541: /*Bug 2356572
542: and

Line 645: from per_all_people_f

641: -- cursor to check is person id is belong to an organization.
642: --
643: cursor org_person is
644: select null
645: from per_all_people_f
646: where person_id = p_contact_id and
647: p_effective_date between effective_start_date and
648: effective_end_date ;
649: