DBA Data[Home] [Help]

APPS.AME_CAL_UPD SQL Statements

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

Line: 54

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

  l_last_updated_by   number;
Line: 62

  l_last_update_login number;
Line: 64

  l_last_update_date  date;
Line: 73

  l_last_update_date   := sysdate;
Line: 74

  l_last_updated_by    := l_current_user_id;
Line: 75

  l_last_update_login  := l_current_user_id;
Line: 79

  update ame_calling_apps_tl
    set
     application_id                  = p_rec.application_id
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    ,application_name                = p_rec.application_name
    ,last_update_date                = l_last_update_date
    ,last_updated_by                 = l_last_updated_by
    ,last_update_login               = l_last_update_login
    where application_id = p_rec.application_id
    and language = p_rec.language;
Line: 114

End update_dml;
Line: 148

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

End pre_update;
Line: 192

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

    ame_cal_rku.after_update
      (p_application_id
      => p_rec.application_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_application_name
      => p_rec.application_name
      ,p_source_lang_o
      => ame_cal_shd.g_old_rec.source_lang
      ,p_application_name_o
      => ame_cal_shd.g_old_rec.application_name
      );
Line: 228

End post_update;
Line: 321

  ame_cal_bus.update_validate
     (p_rec
     );
Line: 330

  ame_cal_upd.pre_update(p_rec);
Line: 334

  ame_cal_upd.update_dml(p_rec);
Line: 338

  ame_cal_upd.post_update
     (p_rec
     );
Line: 398

    select cal.language
      from ame_calling_apps_tl cal
     where cal.application_id = p_application_id
       and p_language_code in (cal.language
                              ,cal.source_lang);