DBA Data[Home] [Help]

APPS.PER_CNT_UPD SQL Statements

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

Line: 54

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

  update per_ri_configurations_tl
    set
     configuration_code              = p_rec.configuration_code
    ,configuration_name              = p_rec.configuration_name
    ,configuration_description       = p_rec.configuration_description
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    where configuration_code = p_rec.configuration_code
    and language = p_rec.language;
Line: 101

End update_dml;
Line: 135

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

End pre_update;
Line: 179

Procedure post_update
  (p_effective_date               in date
  ,p_rec                          in per_cnt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_update';
Line: 190

    per_cnt_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_configuration_code
      => p_rec.configuration_code
      ,p_configuration_name
      => p_rec.configuration_name
      ,p_configuration_description
      => p_rec.configuration_description
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_configuration_name_o
      => per_cnt_shd.g_old_rec.configuration_name
      ,p_configuration_description_o
      => per_cnt_shd.g_old_rec.configuration_description
      ,p_source_lang_o
      => per_cnt_shd.g_old_rec.source_lang
      );
Line: 221

End post_update;
Line: 319

  per_cnt_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 329

  per_cnt_upd.pre_update(p_rec);
Line: 333

  per_cnt_upd.update_dml(p_rec);
Line: 337

  per_cnt_upd.post_update
     (p_effective_date
     ,p_rec
     );
Line: 404

    select cnt.language
      from per_ri_configurations_tl cnt
     where cnt.configuration_code = p_configuration_code
       and p_language_code in (cnt.language
                              ,cnt.source_lang);