DBA Data[Home] [Help]

APPS.HXC_HSD_BUS dependencies on PER_BUSINESS_GROUPS_PERF

Line 32: -- hxc_seeddata_by_level and PER_BUSINESS_GROUPS_PERF

28: --
29: -- Declare cursor
30: --
31: -- EDIT_HERE In the following cursor statement add join(s) between
32: -- hxc_seeddata_by_level and PER_BUSINESS_GROUPS_PERF
33: -- so that the security_group_id for
34: -- the current business group context can be derived.
35: -- Remove this comment when the edit has been completed.
36: cursor csr_sec_grp is

Line 39: from per_business_groups_perf pbg

35: -- Remove this comment when the edit has been completed.
36: cursor csr_sec_grp is
37: select pbg.security_group_id,
38: pbg.legislation_code
39: from per_business_groups_perf pbg
40: , hxc_seeddata_by_level hsd
41: -- , EDIT_HERE table_name(s) 333
42: where hsd.object_id = p_object_id
43: and hsd.object_type = p_object_type;

Line 124: -- hxc_seeddata_by_level and PER_BUSINESS_GROUPS_PERF

120: --
121: -- Declare cursor
122: --
123: -- EDIT_HERE In the following cursor statement add join(s) between
124: -- hxc_seeddata_by_level and PER_BUSINESS_GROUPS_PERF
125: -- so that the legislation_code for
126: -- the current business group context can be derived.
127: -- Remove this comment when the edit has been completed.
128: cursor csr_leg_code is

Line 130: from per_business_groups_perf pbg

126: -- the current business group context can be derived.
127: -- Remove this comment when the edit has been completed.
128: cursor csr_leg_code is
129: select pbg.legislation_code
130: from per_business_groups_perf pbg
131: , hxc_seeddata_by_level hsd
132: -- , EDIT_HERE table_name(s) 333
133: where hsd.object_id = p_object_id
134: and hsd.object_type = p_object_type;