DBA Data[Home] [Help]

APPS.HR_WPT_INS dependencies on HR_WINDOW_PROPERTIES_TL

Line 65: -- Insert the row into: hr_window_properties_tl

61: --
62: --
63: --
64: --
65: -- Insert the row into: hr_window_properties_tl
66: --
67: insert into hr_window_properties_tl
68: (window_property_id
69: ,language

Line 67: insert into hr_window_properties_tl

63: --
64: --
65: -- Insert the row into: hr_window_properties_tl
66: --
67: insert into hr_window_properties_tl
68: (window_property_id
69: ,language
70: ,source_lang
71: ,title

Line 214: (p_module_name => 'HR_WINDOW_PROPERTIES_TL'

210: --
211: when hr_api.cannot_find_prog_unit then
212: --
213: hr_api.cannot_find_prog_unit_error
214: (p_module_name => 'HR_WINDOW_PROPERTIES_TL'
215: ,p_hook_type => 'AI');
216: --
217: end;
218: --

Line 320: from hr_window_properties_tl wpt

316: select l.language_code
317: from fnd_languages l
318: where l.installed_flag in ('I','B')
319: and not exists (select null
320: from hr_window_properties_tl wpt
321: where wpt.window_property_id = p_window_property_id
322: and wpt.language = l.language_code);
323: --
324: l_proc varchar2(72) := g_package || 'ins_tl';