DBA Data[Home] [Help]

APPS.AME_CAL_UPD dependencies on AME_CALLING_APPS_TL

Line 77: -- Update the ame_calling_apps_tl Row

73: l_last_update_date := sysdate;
74: l_last_updated_by := l_current_user_id;
75: l_last_update_login := l_current_user_id;
76: --
77: -- Update the ame_calling_apps_tl Row
78: --
79: update ame_calling_apps_tl
80: set
81: application_id = p_rec.application_id

Line 79: update ame_calling_apps_tl

75: l_last_update_login := l_current_user_id;
76: --
77: -- Update the ame_calling_apps_tl Row
78: --
79: update ame_calling_apps_tl
80: set
81: application_id = p_rec.application_id
82: ,language = p_rec.language
83: ,source_lang = p_rec.source_lang

Line 222: (p_module_name => 'AME_CALLING_APPS_TL'

218: --
219: when hr_api.cannot_find_prog_unit then
220: --
221: hr_api.cannot_find_prog_unit_error
222: (p_module_name => 'AME_CALLING_APPS_TL'
223: ,p_hook_type => 'AU');
224: --
225: end;
226: --

Line 399: from ame_calling_apps_tl cal

395: -- source_lang match the specified language.
396: --
397: cursor csr_upd_langs is
398: select cal.language
399: from ame_calling_apps_tl cal
400: where cal.application_id = p_application_id
401: and p_language_code in (cal.language
402: ,cal.source_lang);
403: --