DBA Data[Home] [Help]

APPS.FF_FFP_BUS dependencies on PER_BUSINESS_GROUPS_PERF

Line 31: -- ff_function_parameters and PER_BUSINESS_GROUPS_PERF

27: --
28: -- Declare cursor
29: --
30: -- EDIT_HERE In the following cursor statement add join(s) between
31: -- ff_function_parameters 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: , ff_function_parameters ffp
40: , ff_functions fff
41: where ffp.function_id = fff.function_id
42: and ffp.function_id = p_function_id

Line 118: -- ff_function_parameters and PER_BUSINESS_GROUPS_PERF

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

Line 124: from per_business_groups_perf pbg

120: -- the current business group context can be derived.
121: -- Remove this comment when the edit has been completed.
122: cursor csr_leg_code is
123: select pbg.legislation_code
124: from per_business_groups_perf pbg
125: , ff_function_parameters ffp
126: , ff_functions fff
127: where ffp.function_id = fff.function_id
128: and ffp.function_id = p_function_id