DBA Data[Home] [Help]

APPS.AME_AGL_INS dependencies on AME_APPROVAL_GROUPS_TL

Line 81: -- Insert the row into: ame_approval_groups_tl

77: --
78: --
79: --
80: --
81: -- Insert the row into: ame_approval_groups_tl
82: --
83: insert into ame_approval_groups_tl
84: (approval_group_id
85: ,language

Line 83: insert into ame_approval_groups_tl

79: --
80: --
81: -- Insert the row into: ame_approval_groups_tl
82: --
83: insert into ame_approval_groups_tl
84: (approval_group_id
85: ,language
86: ,source_lang
87: ,user_approval_group_name

Line 244: (p_module_name => 'AME_APPROVAL_GROUPS_TL'

240: --
241: when hr_api.cannot_find_prog_unit then
242: --
243: hr_api.cannot_find_prog_unit_error
244: (p_module_name => 'AME_APPROVAL_GROUPS_TL'
245: ,p_hook_type => 'AI');
246: --
247: end;
248: --

Line 359: from ame_approval_groups_tl agl

355: select l.language_code
356: from fnd_languages l
357: where l.installed_flag in ('I','B')
358: and not exists (select null
359: from ame_approval_groups_tl agl
360: where agl.approval_group_id = p_approval_group_id
361: and agl.language = l.language_code);
362: --
363: l_proc varchar2(72) := g_package || 'ins_tl';