DBA Data[Home] [Help]

APPS.OTA_LPT_INS dependencies on OTA_LEARNING_PATHS_TL

Line 65: -- Insert the row into: ota_learning_paths_tl

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

Line 67: insert into ota_learning_paths_tl

63: --
64: --
65: -- Insert the row into: ota_learning_paths_tl
66: --
67: insert into ota_learning_paths_tl
68: (learning_path_id
69: ,language
70: ,name
71: ,description

Line 232: (p_module_name => 'OTA_LEARNING_PATHS_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_LEARNING_PATHS_TL'
233: ,p_hook_type => 'AI');
234: --
235: end;
236: --

Line 364: from ota_learning_paths_tl lpt

360: select l.language_code
361: from fnd_languages l
362: where l.installed_flag in ('I','B')
363: and not exists (select null
364: from ota_learning_paths_tl lpt
365: where lpt.learning_path_id = p_learning_path_id
366: and lpt.language = l.language_code);
367: --
368: l_proc varchar2(72) := g_package || 'ins_tl';