DBA Data[Home] [Help]

APPS.HXC_LKR_BUS dependencies on PER_BUSINESS_GROUPS_PERF

Line 31: -- hxc_locking_rules and PER_BUSINESS_GROUPS_PERF

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

Line 37: from per_business_groups_perf pbg

33: -- the current business group context can be derived.
34: -- Remove this comment when the edit has been completed.
35: cursor csr_sec_grp is
36: select pbg.security_group_id
37: from per_business_groups_perf pbg
38: , hxc_locking_rules lkr
39: -- , EDIT_HERE table_name(s) 333
40: where lkr.locker_type_owner_id = p_locker_type_owner_id
41: and lkr.locker_type_requestor_id = p_locker_type_requestor_id;

Line 116: -- hxc_locking_rules and PER_BUSINESS_GROUPS_PERF

112: --
113: -- Declare cursor
114: --
115: -- EDIT_HERE In the following cursor statement add join(s) between
116: -- hxc_locking_rules and PER_BUSINESS_GROUPS_PERF
117: -- so that the legislation_code for
118: -- the current business group context can be derived.
119: -- Remove this comment when the edit has been completed.
120: cursor csr_leg_code is

Line 122: from per_business_groups_perf pbg

118: -- the current business group context can be derived.
119: -- Remove this comment when the edit has been completed.
120: cursor csr_leg_code is
121: select pbg.legislation_code
122: from per_business_groups_perf pbg
123: , hxc_locking_rules lkr
124: -- , EDIT_HERE table_name(s) 333
125: where lkr.locker_type_owner_id = p_locker_type_owner_id
126: and lkr.locker_type_requestor_id = p_locker_type_requestor_id;