DBA Data[Home] [Help]

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

  update ota_bkng_justifications_tl
    set
     booking_justification_id        = p_rec.booking_justification_id
    ,justification_text              = p_rec.justification_text
    ,source_lang                     = p_rec.source_lang
    ,language                        = p_rec.language
    where booking_justification_id = p_rec.booking_justification_id
    and language = p_rec.language;
Line: 100

End update_dml;
Line: 134

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

    ota_bjt_rku.after_update
      (p_booking_justification_id
      => p_rec.booking_justification_id
      ,p_justification_text
      => p_rec.justification_text
      ,p_source_lang
      => p_rec.source_lang
      ,p_language
      => p_rec.language
      ,p_justification_text_o
      => ota_bjt_shd.g_old_rec.justification_text
      ,p_source_lang_o
      => ota_bjt_shd.g_old_rec.source_lang
      );
Line: 214

End post_update;
Line: 307

  ota_bjt_bus.update_validate
     (p_rec
     );
Line: 316

  ota_bjt_upd.pre_update(p_rec);
Line: 320

  ota_bjt_upd.update_dml(p_rec);
Line: 324

  ota_bjt_upd.post_update
     (p_rec
     );
Line: 383

    select bjt.language
      from ota_bkng_justifications_tl bjt
     where bjt.booking_justification_id = p_booking_justification_id
       and p_language_code in (bjt.language
                              ,bjt.source_lang);