DBA Data[Home] [Help]

APPS.AME_CVL_UPD dependencies on AME_CONFIG_VARS_TL

Line 66: -- Update the ame_config_vars_tl Row

62: --
63: --
64: --
65: --
66: -- Update the ame_config_vars_tl Row
67: --
68: update ame_config_vars_tl
69: set
70: variable_name = p_rec.variable_name

Line 68: update ame_config_vars_tl

64: --
65: --
66: -- Update the ame_config_vars_tl Row
67: --
68: update ame_config_vars_tl
69: set
70: variable_name = p_rec.variable_name
71: ,language = p_rec.language
72: ,source_lang = p_rec.source_lang

Line 205: (p_module_name => 'AME_CONFIG_VARS_TL'

201: --
202: when hr_api.cannot_find_prog_unit then
203: --
204: hr_api.cannot_find_prog_unit_error
205: (p_module_name => 'AME_CONFIG_VARS_TL'
206: ,p_hook_type => 'AU');
207: --
208: end;
209: --

Line 389: from ame_config_vars_tl cvl

385: -- source_lang match the specified language.
386: --
387: cursor csr_upd_langs is
388: select cvl.language
389: from ame_config_vars_tl cvl
390: where cvl.variable_name = p_variable_name
391: and p_language_code in (cvl.language
392: ,cvl.source_lang);
393: --