DBA Data[Home] [Help]

APPS.PER_TASKFLOW_MIGRATION dependencies on HR_NAVIGATION_PATHS_TL

Line 127: delete from HR_NAVIGATION_PATHS_TL T

123: begin
124: /*
125: ** clear out any existing data for this range of records
126: */
127: delete from HR_NAVIGATION_PATHS_TL T
128: where not exists
129: (select NULL
130: from HR_NAVIGATION_PATHS B
131: where B.NAV_PATH_ID = T.NAV_PATH_ID

Line 151: insert into hr_navigation_paths_tl (

147: /*
148: ** insert the TL rows
149: */
150:
151: insert into hr_navigation_paths_tl (
152: nav_path_id
153: ,language
154: ,source_lang
155: ,override_label

Line 172: from hr_navigation_paths_tl t

168: ,sysdate
169: from hr_navigation_paths b
170: where not exists
171: (select '1'
172: from hr_navigation_paths_tl t
173: where t.nav_path_id = b.nav_path_id
174: and t.language = l_current_language);
175:
176: end loop;