DBA Data[Home] [Help]

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

  update hr_ki_hierarchies_tl
    set
     hierarchy_id                 = p_rec.hierarchy_id
    ,name                            = p_rec.name
    ,description                     = p_rec.description
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    where hierarchy_id = p_rec.hierarchy_id and language = p_rec.language
     ;
Line: 101

End update_dml;
Line: 135

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

End pre_update;
Line: 179

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

    hr_htl_rku.after_update
      (p_hierarchy_id
      => p_rec.hierarchy_id
      ,p_name
      => p_rec.name
      ,p_description
      => p_rec.description
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_name_o
      => hr_htl_shd.g_old_rec.name
      ,p_description_o
      => hr_htl_shd.g_old_rec.description
      ,p_source_lang_o
      => hr_htl_shd.g_old_rec.source_lang
      );
Line: 219

End post_update;
Line: 316

  hr_htl_bus.update_validate
     (p_rec
     );
Line: 325

  hr_htl_upd.pre_update(p_rec);
Line: 329

  hr_htl_upd.update_dml(p_rec);
Line: 333

  hr_htl_upd.post_update
     (p_rec
     );
Line: 396

    select htl.language
      from hr_ki_hierarchies_tl htl
     where
       htl.hierarchy_id = p_hierarchy_id
       and p_language_code in (htl.language
                              ,htl.source_lang);