DBA Data[Home] [Help]

APPS.PER_FDL_BUS dependencies on PER_BUSINESS_GROUPS_PERF

Line 31: -- per_fnd_doc_links and PER_BUSINESS_GROUPS_PERF

27: --
28: -- Declare cursor
29: --
30: -- EDIT_HERE In the following cursor statement add join(s) between
31: -- per_fnd_doc_links 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 38: from per_business_groups_perf pbg

34: -- Remove this comment when the edit has been completed.
35: cursor csr_sec_grp is
36: select pbg.security_group_id,
37: pbg.legislation_code
38: from per_business_groups_perf pbg
39: , per_fnd_doc_links fdl
40: -- , EDIT_HERE table_name(s) 333
41: where fdl.fnd_doc_link_id = p_fnd_doc_link_id;
42: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;

Line 111: -- per_fnd_doc_links and PER_BUSINESS_GROUPS_PERF

107: --
108: -- Declare cursor
109: --
110: -- EDIT_HERE In the following cursor statement add join(s) between
111: -- per_fnd_doc_links and PER_BUSINESS_GROUPS_PERF
112: -- so that the legislation_code for
113: -- the current business group context can be derived.
114: -- Remove this comment when the edit has been completed.
115: cursor csr_leg_code is

Line 117: from per_business_groups_perf pbg

113: -- the current business group context can be derived.
114: -- Remove this comment when the edit has been completed.
115: cursor csr_leg_code is
116: select pbg.legislation_code
117: from per_business_groups_perf pbg
118: , per_fnd_doc_links fdl
119: -- , EDIT_HERE table_name(s) 333
120: where fdl.fnd_doc_link_id = p_fnd_doc_link_id;
121: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;