DBA Data[Home] [Help]

APPS.PER_ASSIGNMENTS_F_PKG dependencies on HR_SECURITY

Line 467: hr_security_internal.add_to_person_list(

463: hr_utility.set_location( l_proc, 60);
464:
465: -- Start of fix 3634447
466: -- Add the person to the appropriate security lists
467: hr_security_internal.add_to_person_list(
468: p_effective_date => p_effective_start_date,
469: p_assignment_id => p_assignment_id);
470: -- End of fix 3634447
471: hr_security.add_assignment(p_person_id, p_assignment_id); -- Bug 4018555

Line 471: hr_security.add_assignment(p_person_id, p_assignment_id); -- Bug 4018555

467: hr_security_internal.add_to_person_list(
468: p_effective_date => p_effective_start_date,
469: p_assignment_id => p_assignment_id);
470: -- End of fix 3634447
471: hr_security.add_assignment(p_person_id, p_assignment_id); -- Bug 4018555
472: --
473: hr_utility.set_location( l_proc, 70);
474:
475: IF l_legislation_code = 'US' THEN

Line 1818: hr_security_internal.clear_from_person_list(

1814:
1815:
1816: if (l_count_get_assign > 0 ) then
1817: */
1818: hr_security_internal.clear_from_person_list(
1819: p_person_id => p_person_id);
1820: --
1821: /*end if;*/ -- Commented for 6167879
1822: --

Line 1834: hr_security_internal.add_to_person_list( p_effective_date => trunc(sysdate), -- for bug14592133

1830: open csr_get_assign(p_person_id);
1831: loop
1832: fetch csr_get_assign into l_assignment_id;
1833: exit when csr_get_assign%NOTFOUND;
1834: hr_security_internal.add_to_person_list( p_effective_date => trunc(sysdate), -- for bug14592133
1835: p_assignment_id => l_assignment_id);
1836: end loop;
1837: else
1838: hr_utility.set_location('p_eff_strt_date:'||p_effective_start_date,68);

Line 1843: hr_security_internal.add_to_person_list(

1839: open csr_get_assign1(p_person_id);
1840: loop
1841: fetch csr_get_assign1 into l_assignment_id;
1842: exit when csr_get_assign1%NOTFOUND;
1843: hr_security_internal.add_to_person_list(
1844: p_effective_date => p_effective_start_date,
1845: p_assignment_id => l_assignment_id);
1846: end loop;
1847: end if;