DBA Data[Home] [Help]

APPS.PAY_MX_BAL_UPLOAD dependencies on PER_ALL_ASSIGNMENTS_F

Line 44: from per_all_assignments_f ASG

40: ,p_upload_date date
41: ) is
42:
43: select nvl(min(ASG.effective_start_date), END_OF_TIME)
44: from per_all_assignments_f ASG
45: where ASG.assignment_id = p_assignment_id
46: and ASG.effective_start_date <= p_upload_date;
47:
48: --

Line 77: from per_all_assignments_f ASS

73: ,p_expiry_date date
74: ) is
75: select nvl(greatest(min(ASS.effective_start_date), p_expiry_date),
76: END_OF_TIME)
77: from per_all_assignments_f ASS
78: where ASS.assignment_id = p_assignment_id
79: and ASS.effective_start_date <= p_upload_date
80: and ASS.effective_end_date >= p_expiry_date;
81: