DBA Data[Home] [Help]

APPS.HR_ORI_BUS dependencies on PER_BUSINESS_GROUPS

Line 27: -- hr_organization_information and PER_BUSINESS_GROUPS

23: --
24: -- Declare cursor
25: --
26: -- EDIT_HERE In the following cursor statement add join(s) between
27: -- hr_organization_information and PER_BUSINESS_GROUPS
28: -- so that the security_group_id for
29: -- the current business group context can be derived.
30: -- Remove this comment when the edit has been completed.
31: cursor csr_sec_grp is

Line 33: from per_business_groups pbg

29: -- the current business group context can be derived.
30: -- Remove this comment when the edit has been completed.
31: cursor csr_sec_grp is
32: select pbg.security_group_id
33: from per_business_groups pbg
34: , hr_organization_information ori
35: -- , EDIT_HERE table_name(s) 333
36: where ori.org_information_id = p_org_information_id;
37: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;

Line 815: -- hr_organization_information and PER_BUSINESS_GROUPS

811: --
812: -- Declare cursor
813: --
814: -- EDIT_HERE In the following cursor statement add join(s) between
815: -- hr_organization_information and PER_BUSINESS_GROUPS
816: -- so that the legislation_code for
817: -- the current business group context can be derived.
818: -- Remove this comment when the edit has been completed.
819: -- JOIN COMPLETED

Line 822: from per_business_groups pbg

818: -- Remove this comment when the edit has been completed.
819: -- JOIN COMPLETED
820: cursor csr_leg_code is
821: select pbg.legislation_code
822: from per_business_groups pbg
823: , hr_organization_information ori
824: , hr_organization_units org
825: where ori.org_information_id = p_org_information_id
826: and org.organization_id = ori.organization_id

Line 1611: -- FROM per_business_groups pbg

1607: -- select statement above
1608: --
1609: -- AND hoit.legislation_code =
1610: -- (SELECT pbg.legislation_code
1611: -- FROM per_business_groups pbg
1612: -- ,hr_all_organization_units haou
1613: -- WHERE haou.organization_id = p_organization_id
1614: -- AND haou.business_group_id = pbg.business_group_id)
1615: --