DBA Data[Home] [Help]

APPS.AME_CVL_DEL dependencies on AME_CONFIG_VARS_TL

Line 62: -- Delete the ame_config_vars_tl row.

58: hr_utility.set_location('Entering:'||l_proc, 5);
59: --
60: --
61: --
62: -- Delete the ame_config_vars_tl row.
63: --
64: delete from ame_config_vars_tl
65: where variable_name = p_rec.variable_name
66: and language = p_rec.language;

Line 64: delete from ame_config_vars_tl

60: --
61: --
62: -- Delete the ame_config_vars_tl row.
63: --
64: delete from ame_config_vars_tl
65: where variable_name = p_rec.variable_name
66: and language = p_rec.language;
67: --
68: --

Line 183: (p_module_name => 'AME_CONFIG_VARS_TL'

179: --
180: when hr_api.cannot_find_prog_unit then
181: --
182: hr_api.cannot_find_prog_unit_error
183: (p_module_name => 'AME_CONFIG_VARS_TL'
184: ,p_hook_type => 'AD');
185: --
186: end;
187: --

Line 278: from ame_config_vars_tl cvl

274: -- Cursor to obtain all the translation rows.
275: --
276: cursor csr_del_langs is
277: select cvl.language
278: from ame_config_vars_tl cvl
279: where cvl.variable_name = p_variable_name;
280: --
281: l_proc varchar2(72) := g_package||'del_tl';
282: --