DBA Data[Home] [Help]

APPS.OTA_LPT_UPD dependencies on OTA_LEARNING_PATHS_TL

Line 66: -- Update the ota_learning_paths_tl Row

62: --
63: --
64: --
65: --
66: -- Update the ota_learning_paths_tl Row
67: --
68: update ota_learning_paths_tl
69: set
70: learning_path_id = p_rec.learning_path_id

Line 68: update ota_learning_paths_tl

64: --
65: --
66: -- Update the ota_learning_paths_tl Row
67: --
68: update ota_learning_paths_tl
69: set
70: learning_path_id = p_rec.learning_path_id
71: ,language = p_rec.language
72: ,name = p_rec.name

Line 230: (p_module_name => 'OTA_LEARNING_PATHS_TL'

226: --
227: when hr_api.cannot_find_prog_unit then
228: --
229: hr_api.cannot_find_prog_unit_error
230: (p_module_name => 'OTA_LEARNING_PATHS_TL'
231: ,p_hook_type => 'AU');
232: --
233: end;
234: --

Line 441: from ota_learning_paths_tl lpt

437: -- source_lang match the specified language.
438: --
439: cursor csr_upd_langs is
440: select lpt.language
441: from ota_learning_paths_tl lpt
442: where lpt.learning_path_id = p_learning_path_id
443: and p_language_code in (lpt.language
444: ,lpt.source_lang);
445: --