DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_SWI dependencies on PER_ALL_ASSIGNMENTS_F

Line 55: ,per_all_assignments_f asg

51: ,olds.assignment_status_type_id
52: ,asg.person_id
53: from per_assignment_status_types olds
54: ,per_assignment_status_types news
55: ,per_all_assignments_f asg
56: where asg.assignment_id=p_assignment_id
57: and p_effective_date between
58: asg.effective_start_date and asg.effective_end_date
59: and olds.assignment_status_type_id=asg.assignment_status_type_id

Line 68: FROM per_all_assignments_f asg

64: -- that have not been terminated yet.
65:
66: Cursor csr_count(p_person_id per_all_people_f.person_id%type) is
67: SELECT count(*)
68: FROM per_all_assignments_f asg
69: WHERE asg.person_id=p_person_id
70: AND asg.assignment_type='A'
71: AND trunc(p_effective_date)+1 between asg.effective_start_date and asg.effective_end_date;
72: