DBA Data[Home] [Help]

APPS.HXC_DTL_UPD dependencies on HXC_ALIAS_DEFINITIONS_TL

Line 70: -- Update the hxc_alias_definitions_tl Row

66: --
67: --
68: --
69: --
70: -- Update the hxc_alias_definitions_tl Row
71: --
72: update hxc_alias_definitions_tl
73: set
74: alias_definition_id = p_rec.alias_definition_id

Line 72: update hxc_alias_definitions_tl

68: --
69: --
70: -- Update the hxc_alias_definitions_tl Row
71: --
72: update hxc_alias_definitions_tl
73: set
74: alias_definition_id = p_rec.alias_definition_id
75: ,alias_definition_name = p_rec.alias_definition_name
76: ,description = p_rec.description

Line 233: (p_module_name => 'HXC_ALIAS_DEFINITIONS_TL'

229: --
230: when hr_api.cannot_find_prog_unit then
231: --
232: hr_api.cannot_find_prog_unit_error
233: (p_module_name => 'HXC_ALIAS_DEFINITIONS_TL'
234: ,p_hook_type => 'AU');
235: --
236: end;
237: --

Line 426: from hxc_alias_definitions_tl dtl

422: -- source_lang match the specified language.
423: --
424: cursor csr_upd_langs is
425: select dtl.language
426: from hxc_alias_definitions_tl dtl
427: where dtl.alias_definition_id = p_alias_definition_id
428: and p_language_code in (dtl.language
429: ,dtl.source_lang);
430: --