DBA Data[Home] [Help]

APPS.HXC_VTL_UPD dependencies on HXC_ALIAS_VALUES_TL

Line 71: -- Update the hxc_alias_values_tl Row

67: --
68: --
69: --
70: --
71: -- Update the hxc_alias_values_tl Row
72: --
73: update hxc_alias_values_tl
74: set
75: alias_value_id = p_rec.alias_value_id

Line 73: update hxc_alias_values_tl

69: --
70: --
71: -- Update the hxc_alias_values_tl Row
72: --
73: update hxc_alias_values_tl
74: set
75: alias_value_id = p_rec.alias_value_id
76: ,alias_value_name = p_rec.alias_value_name
77: ,language = p_rec.language

Line 226: (p_module_name => 'HXC_ALIAS_VALUES_TL'

222: --
223: when hr_api.cannot_find_prog_unit then
224: --
225: hr_api.cannot_find_prog_unit_error
226: (p_module_name => 'HXC_ALIAS_VALUES_TL'
227: ,p_hook_type => 'AU');
228: --
229: end;
230: --

Line 409: from hxc_alias_values_tl vtl

405: -- source_lang match the specified language.
406: --
407: cursor csr_upd_langs is
408: select vtl.language
409: from hxc_alias_values_tl vtl
410: where vtl.alias_value_id = p_alias_value_id
411: and p_language_code in (vtl.language
412: ,vtl.source_lang);
413: --