DBA Data[Home] [Help]

APPS.HR_WPT_SHD SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 52

    select
       window_property_id
      ,language
      ,source_lang
      ,title
    from  hr_window_properties_tl
    where window_property_id = p_window_property_id
    and   language = p_language;
Line: 118

    select
       window_property_id
      ,language
      ,source_lang
      ,title
    from	hr_window_properties_tl
    where	window_property_id = p_window_property_id
    and   language = p_language
    for	update nowait;
Line: 179

    select wpt.window_property_id
          ,wpt.title
          ,wpt.source_lang
      from hr_window_properties_tl wpt
     where wpt.language = userenv('LANG');
Line: 187

   delete from hr_window_properties_tl t
     where not exists
     (  select null
           from hr_window_properties_b b
           where b.window_property_id = t.window_property_id
     );
Line: 194

   update hr_window_properties_tl t
      set ( title ) =
             ( select b.title
                  from hr_window_properties_tl b
                  where b.window_property_id = t.window_property_id
                  and   b.language = t.source_lang       )
     where ( t.window_property_id,
             t.language
	   ) in
        ( select subt.window_property_id,
                 subt.language
             from hr_window_properties_tl subb, hr_window_properties_tl subt
             where subb.window_property_id = subt.window_property_id
             and subb.language = subt.source_lang
             and ( subb.title <> subt.title
             or    (subb.title is null and subt.title is not null)
             or    (subb.title is not null and subt.title is null)
		  )
	);