DBA Data[Home] [Help]

APPS.HR_PFT_UPD dependencies on HR_KFLEX_UTILITY

Line 409: hr_kflex_utility.set_session_nls_language(l_language.nls_language);

405: --Get the local record values from the locked record
406: l_pft_rec := hr_pft_shd.g_old_rec;
407:
408: --Set the session language (this also clears the key flex cache)
409: hr_kflex_utility.set_session_nls_language(l_language.nls_language);
410:
411: --Populate the local record with translated key flex meanings
412: l_pft_rec.name := fnd_flex_ext.get_segs( 'PER'
413: , 'POS'

Line 437: hr_kflex_utility.set_session_language_code(l_current_language_code);

433:
434: end loop;
435:
436: -- Set the session language back to original (this also clears the key flex cache)
437: hr_kflex_utility.set_session_language_code(l_current_language_code);
438: exception
439: when others then
440: if ( l_current_language_code IS NOT NULL ) then
441: hr_kflex_utility.set_session_language_code(l_current_language_code);

Line 441: hr_kflex_utility.set_session_language_code(l_current_language_code);

437: hr_kflex_utility.set_session_language_code(l_current_language_code);
438: exception
439: when others then
440: if ( l_current_language_code IS NOT NULL ) then
441: hr_kflex_utility.set_session_language_code(l_current_language_code);
442: end if;
443: raise;
444: end;
445: --