DBA Data[Home] [Help]

APPS.PAY_SE_EMPLOYMENT_STATISTICS dependencies on PER_ABSENCE_ATTENDANCES

Line 386: FROM per_absence_attendances paa,

382: AND papf.effective_end_date;
383: /* To Get count of the absences under the person, either vacation or sickness */
384: CURSOR csr_person_absence(p_person_id number, p_month_start_date date, p_month_end_date date, p_absence_type_id varchar2) IS
385: SELECT count(*)
386: FROM per_absence_attendances paa,
387: per_absence_attendance_types pat
388: WHERE paa.person_id = p_person_id
389: AND g_account_date BETWEEN
390: paa.date_start AND paa.date_end

Line 401: FROM per_absence_attendances paa,

397:
398: /* To Get count of the absences under the person, other than vacation and sickness */
399: CURSOR csr_person_other_absence(p_person_id number, p_month_start_date date, p_month_end_date date) IS
400: SELECT count(*)
401: FROM per_absence_attendances paa,
402: per_absence_attendance_types pat
403: WHERE paa.person_id = p_person_id
404: AND g_account_date BETWEEN
405: paa.date_start AND paa.date_end