DBA Data[Home] [Help]

APPS.OTA_CTT_UPD SQL Statements

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

Line: 54

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

  update ota_category_usages_tl
    set
     category_usage_id               = p_rec.category_usage_id
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    ,category                        = p_rec.category
    ,description                     = p_rec.description
    where category_usage_id = p_rec.category_usage_id
    and language = p_rec.language;
Line: 101

End update_dml;
Line: 135

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

    ota_ctt_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_category_usage_id
      => p_rec.category_usage_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_category
      => p_rec.category
      ,p_description
      => p_rec.description
      ,p_source_lang_o
      => ota_ctt_shd.g_old_rec.source_lang
      ,p_category_o
      => ota_ctt_shd.g_old_rec.category
      ,p_description_o
      => ota_ctt_shd.g_old_rec.description
      );
Line: 221

End post_update;
Line: 319

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

  ota_ctt_upd.pre_update(p_rec);
Line: 333

  ota_ctt_upd.update_dml(p_rec);
Line: 337

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

    select ctt.language
      from ota_category_usages_tl ctt
     where ctt.category_usage_id = p_category_usage_id
       and p_language_code in (ctt.language
                              ,ctt.source_lang);