DBA Data[Home] [Help]

APPS.OTA_ONT_UPD SQL Statements

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

Line: 55

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

  update ota_offerings_tl
    set
     offering_id                     = p_rec.offering_id
    ,language                        = p_rec.language
    ,name                            = p_rec.name
    ,description                     = p_rec.description
    ,source_lang                     = p_rec.source_lang
    where offering_id = p_rec.offering_id
    and language = p_rec.language;
Line: 105

End update_dml;
Line: 139

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

End pre_update;
Line: 183

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

    /*ota_ont_rku.after_update
      (p_effective_date              => p_effective_date
      ,p_offering_id
      => p_rec.offering_id
      ,p_language
      => p_rec.language
      ,p_name
      => p_rec.name
      ,p_description
      => p_rec.description
      ,p_source_lang
      => p_rec.source_lang
      ,p_name_o
      => ota_ont_shd.g_old_rec.name
      ,p_description_o
      => ota_ont_shd.g_old_rec.description
      ,p_source_lang_o
      => ota_ont_shd.g_old_rec.source_lang
      );*/
Line: 226

End post_update;
Line: 324

  ota_ont_bus.update_validate
     (p_effective_date
     ,p_rec
     );
Line: 334

  ota_ont_upd.pre_update(p_rec);
Line: 338

  ota_ont_upd.update_dml(p_rec);
Line: 342

  ota_ont_upd.post_update
     (p_effective_date
     ,p_rec
     );
Line: 409

    select ont.language
      from ota_offerings_tl ont
     where ont.offering_id = p_offering_id
       and p_language_code in (ont.language
                              ,ont.source_lang);