DBA Data[Home] [Help]

APPS.HXC_HAD_BUS dependencies on PER_BUSINESS_GROUPS

Line 28: -- hxc_alias_definitions and PER_BUSINESS_GROUPS

24: --
25: -- Declare cursor
26: --
27: -- EDIT_HERE In the following cursor statement add join(s) between
28: -- hxc_alias_definitions and PER_BUSINESS_GROUPS
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 34: from per_business_groups pbg

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
33: select pbg.security_group_id
34: from per_business_groups pbg
35: , hxc_alias_definitions had
36: -- , EDIT_HERE table_name(s) 333
37: where had.alias_definition_id = p_alias_definition_id;
38: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;

Line 100: -- hxc_alias_definitions and PER_BUSINESS_GROUPS

96: --
97: -- Declare cursor
98: --
99: -- EDIT_HERE In the following cursor statement add join(s) between
100: -- hxc_alias_definitions and PER_BUSINESS_GROUPS
101: -- so that the legislation_code for
102: -- the current business group context can be derived.
103: -- Remove this comment when the edit has been completed.
104: cursor csr_leg_code is

Line 106: from per_business_groups pbg

102: -- the current business group context can be derived.
103: -- Remove this comment when the edit has been completed.
104: cursor csr_leg_code is
105: select pbg.legislation_code
106: from per_business_groups pbg
107: , hxc_alias_definitions had
108: -- , EDIT_HERE table_name(s) 333
109: where had.alias_definition_id = p_alias_definition_id;
110: -- and pbg.business_group_id = EDIT_HERE 333.business_group_id;

Line 479: l_lc per_business_groups.legislation_code%TYPE;

475: --
476: -- Local declarations
477: l_proc varchar2(72);
478: l_territory_code fnd_territories.territory_code%TYPE;
479: l_lc per_business_groups.legislation_code%TYPE;
480: --
481: -- Setup cursor for valid legislation code check
482: cursor csr_valid_legislation_code is
483: select territory_code

Line 490: from per_business_groups pbg

486:
487: -- Setup cursor for valid legislation code for a particular business_group
488: cursor csr_valid_bg_lc is
489: select legislation_code
490: from per_business_groups pbg
491: where pbg.business_group_id = p_business_group_id
492: and pbg.legislation_code = p_legislation_code;
493:
494: --