DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_API dependencies on HR_SECURITY_INTERNAL

Line 5420: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);

5416: --
5417: -- add rows to the security table if it is a current assignment.
5418: --
5419: if(l_effective_date <= sysdate) then
5420: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
5421: end if;
5422: --
5423: if g_debug then
5424: hr_utility.set_location(l_proc, 40);

Line 6599: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);

6595: -- add rows to the security table if it is a current assignment.
6596: --
6597: if(l_effective_date <= sysdate) then
6598: --
6599: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
6600: --
6601: end if;
6602: --
6603: if g_debug then

Line 12722: hr_security_internal.clear_from_person_list

12718: --
12719: IF (per_asg_shd.g_old_rec.organization_id = l_business_group_id AND
12720: l_org_id <> l_business_group_id) THEN -- Bug 3553286
12721: --
12722: hr_security_internal.clear_from_person_list
12723: (per_asg_shd.g_old_rec.person_id);
12724: --
12725: END IF;
12726: --

Line 12727: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);

12723: (per_asg_shd.g_old_rec.person_id);
12724: --
12725: END IF;
12726: --
12727: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);
12728: --
12729: END IF;
12730: --
12731: if g_debug then

Line 16071: hr_security_internal.clear_from_person_list

16067: if l_effective_date between l_sec_effective_start_date
16068: and l_sec_effective_end_date then
16069: if (per_asg_shd.g_old_rec.organization_id = l_business_group_id
16070: and l_org_id <> l_business_group_id) then -- Bug 3553286
16071: hr_security_internal.clear_from_person_list
16072: (per_asg_shd.g_old_rec.person_id);
16073: end if;
16074: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);
16075: end if;

Line 16074: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);

16070: and l_org_id <> l_business_group_id) then -- Bug 3553286
16071: hr_security_internal.clear_from_person_list
16072: (per_asg_shd.g_old_rec.person_id);
16073: end if;
16074: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);
16075: end if;
16076: --
16077: if g_debug then
16078: hr_utility.set_location(l_proc, 290);

Line 17933: hr_security_internal.clear_from_person_list

17929: then
17930: if(per_asg_shd.g_old_rec.organization_id = l_business_group_id
17931: and p_organization_id <> l_business_group_id)
17932: then
17933: hr_security_internal.clear_from_person_list
17934: (per_asg_shd.g_old_rec.person_id);
17935: end if;
17936: --fix for bug 5938120 starts here
17937: open csr_get_assign(per_asg_shd.g_old_rec.person_id);

Line 17941: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);

17937: open csr_get_assign(per_asg_shd.g_old_rec.person_id);
17938: LOOP
17939: fetch csr_get_assign into l_assignment_id;
17940: exit when csr_get_assign%NOTFOUND;
17941: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
17942: end loop;
17943: --fix for bug 5938120 ends here
17944: end if;
17945: --

Line 20382: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);

20378: --
20379: -- add to the security list if neccesary
20380: --
20381: if(l_effective_date<=sysdate) then
20382: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
20383: end if;
20384: --
20385: --
20386: -- Start of API User Hook for the after hook of create_secondary_apl_asg.