DBA Data[Home] [Help]

APPS.OTA_AVT_INS dependencies on OTA_ACTIVITY_VERSIONS_TL

Line 65: -- Insert the row into: ota_activity_versions_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: ota_activity_versions_tl
66: --
67: insert into ota_activity_versions_tl
68: (activity_version_id
69: ,language

Line 67: insert into ota_activity_versions_tl

63: --
64: --
65: -- Insert the row into: ota_activity_versions_tl
66: --
67: insert into ota_activity_versions_tl
68: (activity_version_id
69: ,language
70: ,source_lang
71: ,version_name

Line 232: (p_module_name => 'OTA_ACTIVITY_VERSIONS_TL'

228: --
229: when hr_api.cannot_find_prog_unit then
230: --
231: hr_api.cannot_find_prog_unit_error
232: (p_module_name => 'OTA_ACTIVITY_VERSIONS_TL'
233: ,p_hook_type => 'AI');
234: --
235: end;
236: --

Line 363: from ota_activity_versions_tl avt

359: select l.language_code
360: from fnd_languages l
361: where l.installed_flag in ('I','B')
362: and not exists (select null
363: from ota_activity_versions_tl avt
364: where avt.activity_version_id = p_activity_version_id
365: and avt.language = l.language_code);
366: --
367: l_proc varchar2(72) := g_package || 'ins_tl';