DBA Data[Home] [Help]

APPS.AME_ATL_INS dependencies on AME_ATTRIBUTES_TL

Line 82: -- Insert the row into: ame_attributes_tl

78: l_last_update_login := l_current_user_id;
79: --
80: --
81: --
82: -- Insert the row into: ame_attributes_tl
83: --
84: insert into ame_attributes_tl
85: (attribute_id
86: ,language

Line 84: insert into ame_attributes_tl

80: --
81: --
82: -- Insert the row into: ame_attributes_tl
83: --
84: insert into ame_attributes_tl
85: (attribute_id
86: ,language
87: ,source_lang
88: ,description

Line 241: (p_module_name => 'AME_ATTRIBUTES_TL'

237: --
238: when hr_api.cannot_find_prog_unit then
239: --
240: hr_api.cannot_find_prog_unit_error
241: (p_module_name => 'AME_ATTRIBUTES_TL'
242: ,p_hook_type => 'AI');
243: --
244: end;
245: --

Line 353: from ame_attributes_tl atl

349: select l.language_code
350: from fnd_languages l
351: where l.installed_flag in ('I','B')
352: and not exists (select null
353: from ame_attributes_tl atl
354: where atl.attribute_id = p_attribute_id
355: and atl.language = l.language_code);
356: --
357: l_proc varchar2(72) := g_package || 'ins_tl';