DBA Data[Home] [Help]

APPS.HR_OTT_UPD SQL Statements

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

Line: 54

Procedure update_dml
  (p_rec in out nocopy hr_ott_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 68

  update hr_ki_option_types_tl
    set
     option_type_id                  = p_rec.option_type_id
    ,option_name                     = p_rec.option_name
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    where option_type_id = p_rec.option_type_id
    and language = p_rec.language;
Line: 100

End update_dml;
Line: 134

Procedure pre_update
  (p_rec in hr_ott_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'pre_update';
Line: 144

End pre_update;
Line: 178

Procedure post_update
  (p_rec                          in hr_ott_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 189

    hr_ott_rku.after_update
      (p_option_type_id
      => p_rec.option_type_id
      ,p_option_name
      => p_rec.option_name
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_option_name_o
      => hr_ott_shd.g_old_rec.option_name
      ,p_source_lang_o
      => hr_ott_shd.g_old_rec.source_lang
      );
Line: 217

End post_update;
Line: 311

  hr_ott_bus.update_validate
     (p_rec
     ,p_option_type_id
     );
Line: 321

  hr_ott_upd.pre_update(p_rec);
Line: 325

  hr_ott_upd.update_dml(p_rec);
Line: 329

  hr_ott_upd.post_update
     (p_rec
     );
Line: 390

    select ott.language
      from hr_ki_option_types_tl ott
     where
        ott.option_type_id = p_option_type_id
       and p_language_code in (ott.language
                              ,ott.source_lang);