DBA Data[Home] [Help]

APPS.HR_ORT_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_ort_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_dml';
Line: 68

  update hr_all_organization_units_tl
    set
     organization_id                 = p_rec.organization_id
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    ,name                            = p_rec.name
    where organization_id = p_rec.organization_id
    and language = p_rec.language;
Line: 100

End update_dml;
Line: 134

Procedure pre_update
  (p_rec in hr_ort_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_ort_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 188

    hr_ort_rku.after_update
      (p_organization_id
      => p_rec.organization_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_name
      => p_rec.name
      ,p_source_lang_o
      => hr_ort_shd.g_old_rec.source_lang
      ,p_name_o
      => hr_ort_shd.g_old_rec.name
      );
Line: 214

End post_update;
Line: 307

  hr_ort_bus.update_validate
     (p_rec
     );
Line: 313

  hr_ort_upd.pre_update(p_rec);
Line: 317

  hr_ort_upd.update_dml(p_rec);
Line: 321

  hr_ort_upd.post_update
     (p_rec
     );
Line: 378

    select ort.language
      from hr_all_organization_units_tl ort
     where ort.organization_id = p_organization_id
       and p_language_code in (ort.language
                              ,ort.source_lang);