DBA Data[Home] [Help]

APPS.HXC_HPH_BUS dependencies on HXC_ALIAS_TYPE_COMPONENTS

Line 1001: from hxc_alias_type_components hac

997: procedure get_mapping_components(p_alias_type_id in number,
998: p_mapping_id_table in out nocopy hxc_hph_shd.alias_mapping_table) is
999: cursor c_get_mapping_components (p_alias_type_id number) is
1000: select mapping_component_id
1001: from hxc_alias_type_components hac
1002: where hac.alias_type_id = p_alias_type_id;
1003: ind number;
1004: begin
1005: g_debug:=hr_utility.debug_enabled;

Line 1380: from hxc_alias_type_components hac,

1376: l_mapping_name varchar2(80);
1377: succ number := 0;
1378: cursor c_get_mapping_comp_name(p_alias_type_id number) is
1379: select name
1380: from hxc_alias_type_components hac,
1381: hxc_mapping_components hmc
1382: where hac.alias_type_id = p_alias_type_id
1383: and hac.mapping_component_id = hmc.mapping_component_id;
1384: