DBA Data[Home] [Help]

APPS.PAY_AU_BAL_UPLOAD dependencies on PER_TIME_PERIODS

Line 71: ,per_time_periods PTP

67: ,p_effective_date date) is
68: select greatest (min(a.effective_start_date), min(PTP.start_date))
69: , min(a.business_group_id)
70: from per_assignments_f a
71: ,per_time_periods PTP
72: where a.assignment_id = p_assignment_id
73: and PTP.payroll_id = a.payroll_id
74: and PTP.start_date <= p_effective_date
75: and (ptp.start_date between a.effective_start_date and p_effective_date

Line 86: from per_time_periods ptp

82: cursor csr_period_start
83: (p_assignment_id number
84: ,p_upload_date date) is
85: select nvl(ptp.start_date, g_end_of_time)
86: from per_time_periods ptp
87: , per_assignments_f paf
88: where paf.assignment_id = p_assignment_id
89: and p_upload_date between paf.effective_start_date
90: and paf.effective_end_date