DBA Data[Home] [Help]

APPS.HR_WORKFLOW_INSTALL_PKG dependencies on HR_NAVIGATION_UNITS_TL

Line 429: from HR_NAVIGATION_UNITS_TL T

425: from FND_LANGUAGES L
426: where L.INSTALLED_FLAG in ('I', 'B')
427: and not exists
428: (select NULL
429: from HR_NAVIGATION_UNITS_TL T
430: where T.NAV_UNIT_ID = L_NAV_UNIT_ID
431: and T.LANGUAGE = L.LANGUAGE_CODE);
432:
433: insert into hr_navigation_units_tl (

Line 433: insert into hr_navigation_units_tl (

429: from HR_NAVIGATION_UNITS_TL T
430: where T.NAV_UNIT_ID = L_NAV_UNIT_ID
431: and T.LANGUAGE = L.LANGUAGE_CODE);
432:
433: insert into hr_navigation_units_tl (
434: nav_unit_id
435: ,language
436: ,source_lang
437: ,default_label

Line 446: from hr_navigation_units_tl t

442: ,b.default_label
443: from hr_navigation_units b
444: where not exists
445: (select '1'
446: from hr_navigation_units_tl t
447: where t.nav_unit_id = b.nav_unit_id
448: and t.language = l_current_language);
449: end new_nav_unit;
450: