DBA Data[Home] [Help]

APPS.HRHIRAPL dependencies on HR_SECURITY_INTERNAL

Line 1303: hr_security_internal.add_to_person_list(

1299: hr_utility.raise_error;
1300:
1301: end;
1302: --Start of fix 12812436
1303: hr_security_internal.add_to_person_list(
1304: p_effective_date => l_asg_rec.effective_start_date,
1305: p_assignment_id => l_asg_rec.assignment_id);
1306: --End of fix 12812436
1307:

Line 4904: hr_security_internal.clear_from_person_list(p_person_id);

4900: fetch check_past_pds into l_dummy;
4901: if check_past_pds%FOUND then
4902: close check_past_pds;
4903: hr_utility.set_location('hr_person.ins_per_list',10);
4904: hr_security_internal.clear_from_person_list(p_person_id);
4905: else
4906: close check_past_pds;
4907: open check_pds;
4908: fetch check_pds into l_dummy;

Line 4912: hr_security_internal.clear_from_person_list(p_person_id);

4908: fetch check_pds into l_dummy;
4909: if check_pds%notfound then
4910: close check_pds;
4911: hr_utility.set_location('hr_person.ins_per_list',15);
4912: hr_security_internal.clear_from_person_list(p_person_id);
4913: else
4914: close check_pds;
4915: end if;
4916: end if;

Line 4921: hr_security_internal.add_to_person_list

4917: --
4918: hr_utility.set_location('hr_person.ins_per_list',20);
4919: --
4920: for asg_rec in ass_cur loop
4921: hr_security_internal.add_to_person_list
4922: (p_assignment_id => asg_rec.assignment_id
4923: ,p_effective_date => asg_rec.effective_start_date);
4924: end loop;
4925: --