DBA Data[Home] [Help]

APPS.HR_LOT_UPD dependencies on HR_LOCATIONS_ALL_TL

Line 55: -- Update the hr_locations_all_tl Row

51: --
52: Begin
53: hr_utility.set_location('Entering:'||l_proc, 5);
54: --
55: -- Update the hr_locations_all_tl Row
56: --
57: update hr_locations_all_tl
58: set
59: location_id = p_rec.location_id,

Line 57: update hr_locations_all_tl

53: hr_utility.set_location('Entering:'||l_proc, 5);
54: --
55: -- Update the hr_locations_all_tl Row
56: --
57: update hr_locations_all_tl
58: set
59: location_id = p_rec.location_id,
60: language = p_rec.language,
61: source_lang = p_rec.source_lang,

Line 190: (p_module_name => 'HR_LOCATIONS_ALL_TL'

186: --
187: when hr_api.cannot_find_prog_unit then
188: --
189: hr_api.cannot_find_prog_unit_error
190: (p_module_name => 'HR_LOCATIONS_ALL_TL'
191: ,p_hook_type => 'AU');
192: --
193: end;
194: --

Line 378: from hr_locations_all_tl lot

374: -- source_lang match the specified language.
375: --
376: cursor csr_upd_langs is
377: select lot.language
378: from hr_locations_all_tl lot
379: where lot.location_id = p_location_id
380: and p_language_code in (lot.language, lot.source_lang);
381: --
382: l_proc varchar2(72) := g_package||'upd_tl';