DBA Data[Home] [Help]

APPS.AME_ITL_INS dependencies on AME_ITEM_CLASSES_TL

Line 81: -- Insert the row into: ame_item_classes_tl

77: l_last_update_login := l_current_user_id;
78: --
79: --
80: --
81: -- Insert the row into: ame_item_classes_tl
82: --
83: insert into ame_item_classes_tl
84: (item_class_id
85: ,language

Line 83: insert into ame_item_classes_tl

79: --
80: --
81: -- Insert the row into: ame_item_classes_tl
82: --
83: insert into ame_item_classes_tl
84: (item_class_id
85: ,language
86: ,source_lang
87: ,user_item_class_name

Line 240: (p_module_name => 'AME_ITEM_CLASSES_TL'

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

Line 352: from ame_item_classes_tl itl

348: select l.language_code
349: from fnd_languages l
350: where l.installed_flag in ('I','B')
351: and not exists (select null
352: from ame_item_classes_tl itl
353: where itl.item_class_id = p_item_class_id
354: and itl.language = l.language_code);
355: --
356: l_proc varchar2(72) := g_package || 'ins_tl';