DBA Data[Home] [Help]

APPS.HR_ASSIGNMENT_API dependencies on HR_SECURITY_INTERNAL

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

5983: --
5984: -- add rows to the security table if it is a current assignment.
5985: --
5986: if(l_effective_date <= sysdate) then
5987: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
5988: end if;
5989: --
5990: if g_debug then
5991: hr_utility.set_location(l_proc, 40);

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

7162: -- add rows to the security table if it is a current assignment.
7163: --
7164: if(l_effective_date <= sysdate) then
7165: --
7166: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
7167: --
7168: end if;
7169: --
7170: if g_debug then

Line 13323: hr_security_internal.clear_from_person_list

13319: --
13320: IF (per_asg_shd.g_old_rec.organization_id = l_business_group_id AND
13321: l_org_id <> l_business_group_id) THEN -- Bug 3553286
13322: --
13323: hr_security_internal.clear_from_person_list
13324: (per_asg_shd.g_old_rec.person_id);
13325: --
13326: END IF;
13327: --

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

13324: (per_asg_shd.g_old_rec.person_id);
13325: --
13326: END IF;
13327: --
13328: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);
13329: --
13330: END IF;
13331: --
13332: if g_debug then

Line 16739: hr_security_internal.clear_from_person_list

16735: if l_effective_date between l_sec_effective_start_date
16736: and l_sec_effective_end_date then
16737: if (per_asg_shd.g_old_rec.organization_id = l_business_group_id
16738: and l_org_id <> l_business_group_id) then -- Bug 3553286
16739: hr_security_internal.clear_from_person_list
16740: (per_asg_shd.g_old_rec.person_id);
16741: end if;
16742: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);
16743: end if;

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

16738: and l_org_id <> l_business_group_id) then -- Bug 3553286
16739: hr_security_internal.clear_from_person_list
16740: (per_asg_shd.g_old_rec.person_id);
16741: end if;
16742: hr_security_internal.add_to_person_list(l_effective_date,p_assignment_id);
16743: end if;
16744: --
16745: if g_debug then
16746: hr_utility.set_location(l_proc, 290);

Line 18796: hr_security_internal.clear_from_person_list

18792: then
18793: if(per_asg_shd.g_old_rec.organization_id = l_business_group_id
18794: and p_organization_id <> l_business_group_id)
18795: then
18796: hr_security_internal.clear_from_person_list
18797: (per_asg_shd.g_old_rec.person_id);
18798: end if;
18799: --fix for bug 5938120 starts here
18800: open csr_get_assign(per_asg_shd.g_old_rec.person_id);

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

18800: open csr_get_assign(per_asg_shd.g_old_rec.person_id);
18801: LOOP
18802: fetch csr_get_assign into l_assignment_id;
18803: exit when csr_get_assign%NOTFOUND;
18804: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
18805: end loop;
18806: --fix for bug 5938120 ends here
18807: end if;
18808: --

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

21241: --
21242: -- add to the security list if neccesary
21243: --
21244: if(l_effective_date<=sysdate) then
21245: hr_security_internal.add_to_person_list(l_effective_date,l_assignment_id);
21246: end if;
21247: --
21248: --
21249: -- Start of API User Hook for the after hook of create_secondary_apl_asg.