DBA Data[Home] [Help]

APPS.PAY_AU_BAL_UPLOAD dependencies on PER_TIME_PERIODS

Line 70: ,per_time_periods PTP

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

Line 84: from per_time_periods ptp

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