DBA Data[Home] [Help]

APPS.GHR_CAD_BUS dependencies on PER_BUSINESS_GROUPS

Line 27: -- ghr_compl_adrs and PER_BUSINESS_GROUPS

23: --
24: -- Declare cursor
25: --
26: -- EDIT_HERE In the following cursor statement add join(s) between
27: -- ghr_compl_adrs 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: , ghr_compl_adrs cad
35: -- , EDIT_HERE table_name(s) 333
36: where cad.compl_adr_id = p_compl_adr_id;
37: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;

Line 95: -- ghr_compl_adrs and PER_BUSINESS_GROUPS

91: --
92: -- Declare cursor
93: --
94: -- EDIT_HERE In the following cursor statement add join(s) between
95: -- ghr_compl_adrs and PER_BUSINESS_GROUPS
96: -- so that the legislation_code for
97: -- the current business group context can be derived.
98: -- Remove this comment when the edit has been completed.
99: cursor csr_leg_code is

Line 101: from per_business_groups pbg

97: -- the current business group context can be derived.
98: -- Remove this comment when the edit has been completed.
99: cursor csr_leg_code is
100: select pbg.legislation_code
101: from per_business_groups pbg
102: , ghr_compl_adrs cad
103: -- , EDIT_HERE table_name(s) 333
104: where cad.compl_adr_id = p_compl_adr_id;
105: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;