DBA Data[Home] [Help]

APPS.AME_CVL_INS dependencies on AME_CONFIG_VARS_TL

Line 65: -- Insert the row into: ame_config_vars_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: ame_config_vars_tl
66: --
67: insert into ame_config_vars_tl
68: (variable_name
69: ,language

Line 67: insert into ame_config_vars_tl

63: --
64: --
65: -- Insert the row into: ame_config_vars_tl
66: --
67: insert into ame_config_vars_tl
68: (variable_name
69: ,language
70: ,source_lang
71: ,user_config_var_name

Line 213: (p_module_name => 'AME_CONFIG_VARS_TL'

209: --
210: when hr_api.cannot_find_prog_unit then
211: --
212: hr_api.cannot_find_prog_unit_error
213: (p_module_name => 'AME_CONFIG_VARS_TL'
214: ,p_hook_type => 'AI');
215: --
216: end;
217: --

Line 328: from ame_config_vars_tl cvl

324: select l.language_code
325: from fnd_languages l
326: where l.installed_flag in ('I','B')
327: and not exists (select null
328: from ame_config_vars_tl cvl
329: where cvl.variable_name = p_variable_name
330: and cvl.language = l.language_code);
331: --
332: l_proc varchar2(72) := g_package || 'ins_tl';