DBA Data[Home] [Help]

APPS.AME_ACL_INS dependencies on AME_ACTIONS_TL

Line 77: -- Insert the row into: ame_actions_tl

73: l_last_update_login := l_current_user_id;
74: --
75: --
76: --
77: -- Insert the row into: ame_actions_tl
78: --
79: insert into ame_actions_tl
80: (action_id
81: ,language

Line 79: insert into ame_actions_tl

75: --
76: --
77: -- Insert the row into: ame_actions_tl
78: --
79: insert into ame_actions_tl
80: (action_id
81: ,language
82: ,source_lang
83: ,description

Line 236: (p_module_name => 'AME_ACTIONS_TL'

232: --
233: when hr_api.cannot_find_prog_unit then
234: --
235: hr_api.cannot_find_prog_unit_error
236: (p_module_name => 'AME_ACTIONS_TL'
237: ,p_hook_type => 'AI');
238: --
239: end;
240: --

Line 348: from ame_actions_tl acl

344: select l.language_code
345: from fnd_languages l
346: where l.installed_flag in ('I','B')
347: and not exists (select null
348: from ame_actions_tl acl
349: where acl.action_id = p_action_id
350: and acl.language = l.language_code);
351: --
352: l_proc varchar2(72) := g_package || 'ins_tl';