DBA Data[Home] [Help]

APPS.HXC_MAP_BUS dependencies on HXC_MAPPINGS

Line 90: p_name in hxc_mappings.name%TYPE

86: -- {End Of Comments}
87: -- ----------------------------------------------------------------------------
88: Procedure chk_name
89: (
90: p_name in hxc_mappings.name%TYPE
91: ,p_mapping_id in hxc_mappings.mapping_id%TYPE
92: ) IS
93: --
94: l_proc varchar2(72);

Line 91: ,p_mapping_id in hxc_mappings.mapping_id%TYPE

87: -- ----------------------------------------------------------------------------
88: Procedure chk_name
89: (
90: p_name in hxc_mappings.name%TYPE
91: ,p_mapping_id in hxc_mappings.mapping_id%TYPE
92: ) IS
93: --
94: l_proc varchar2(72);
95: --

Line 103: FROM hxc_mappings map

99: SELECT 'error'
100: FROM sys.dual
101: WHERE EXISTS (
102: SELECT 'x'
103: FROM hxc_mappings map
104: WHERE map.name = p_name AND
105: ( map.mapping_id <> p_mapping_id OR
106: p_mapping_id IS NULL ) );
107: --

Line 167: p_mapping_id in hxc_mappings.mapping_id%TYPE

163: -- {End Of Comments}
164: -- ----------------------------------------------------------------------------
165: Procedure chk_delete
166: (
167: p_mapping_id in hxc_mappings.mapping_id%TYPE
168: ) IS
169: --
170: l_proc varchar2(72);
171: --