DBA Data[Home] [Help]

APPS.PER_CNI_BUS dependencies on PER_RI_CONFIG_INFORMATION

Line 28: -- per_ri_config_information and PER_BUSINESS_GROUPS_PERF

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

Line 36: per_ri_config_information cni

32: cursor csr_sec_grp is
33: select Null--pbg.security_group_id,
34: --pbg.legislation_code
35: from --per_business_groups_perf pbg
36: per_ri_config_information cni
37: -- , EDIT_HERE table_name(s) 333
38: where cni.config_information_id = p_config_information_id;
39: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;
40: --

Line 104: -- per_ri_config_information and PER_BUSINESS_GROUPS_PERF

100: --
101: -- Declare cursor
102: --
103: -- EDIT_HERE In the following cursor statement add join(s) between
104: -- per_ri_config_information and PER_BUSINESS_GROUPS_PERF
105: -- so that the legislation_code for
106: -- the current business group context can be derived.
107: -- Remove this comment when the edit has been completed.
108: cursor csr_leg_code is

Line 111: per_ri_config_information cni

107: -- Remove this comment when the edit has been completed.
108: cursor csr_leg_code is
109: select Null--pbg.legislation_code
110: from --per_business_groups_perf pbg
111: per_ri_config_information cni
112: -- , EDIT_HERE table_name(s) 333
113: where cni.config_information_id = p_config_information_id;
114: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;
115: --