DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_SWI dependencies on PER_ASSIGNMENT_STATUS_TYPES

Line 26: per_assignment_status_types.per_system_status%type;

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

Line 28: per_assignment_status_types.per_system_status%type;

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

Line 30: per_assignment_status_types.assignment_status_type_id%type;

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

Line 53: from per_assignment_status_types olds

49: select olds.per_system_status
50: ,news.per_system_status
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

Line 54: ,per_assignment_status_types news

50: ,news.per_system_status
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