DBA Data[Home] [Help]

APPS.HR_PER_TYPE_USAGE_INTERNAL dependencies on PER_PERIODS_OF_SERVICE

Line 1001: from per_periods_of_service

997: --end changes for bug 5706213
998: --
999: cursor csr_pds_start is
1000: select max(date_start)
1001: from per_periods_of_service
1002: where person_id=p_person_id
1003: and date_start <= p_effective_date;
1004: --
1005: cursor csr_pdp_start is

Line 1007: from per_periods_of_service

1003: and date_start <= p_effective_date;
1004: --
1005: cursor csr_pdp_start is
1006: select max(date_start)
1007: from per_periods_of_service
1008: where person_id=p_person_id
1009: and date_start <= p_effective_date;
1010: --
1011: l_date_start date;