DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_SWI dependencies on PER_ASSIGNMENT_STATUS_TYPES

Line 27: per_assignment_status_types.per_system_status%type;

23: -- Internal variables
24: --
25: l_proc varchar2(72) := g_package ||'chg_in_sys_status_to_term_apl';
26: l_old_per_system_status
27: per_assignment_status_types.per_system_status%type;
28: l_new_per_system_status
29: per_assignment_status_types.per_system_status%type;
30: l_assignment_status_type_id
31: per_assignment_status_types.assignment_status_type_id%type;

Line 29: per_assignment_status_types.per_system_status%type;

25: l_proc varchar2(72) := g_package ||'chg_in_sys_status_to_term_apl';
26: l_old_per_system_status
27: per_assignment_status_types.per_system_status%type;
28: l_new_per_system_status
29: per_assignment_status_types.per_system_status%type;
30: l_assignment_status_type_id
31: per_assignment_status_types.assignment_status_type_id%type;
32: l_person_id per_all_people_f.person_id%TYPE;
33: l_ovn per_all_people_f.object_version_number%TYPE;

Line 31: per_assignment_status_types.assignment_status_type_id%type;

27: per_assignment_status_types.per_system_status%type;
28: l_new_per_system_status
29: per_assignment_status_types.per_system_status%type;
30: l_assignment_status_type_id
31: per_assignment_status_types.assignment_status_type_id%type;
32: l_person_id per_all_people_f.person_id%TYPE;
33: l_ovn per_all_people_f.object_version_number%TYPE;
34: l_effective_date date;
35: l_num_asg number;

Line 54: from per_assignment_status_types olds

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

Line 55: ,per_assignment_status_types news

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