DBA Data[Home] [Help]

APPS.PAY_PTT_UPD SQL Statements

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

Line: 54

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

  update pay_user_tables_tl
    set
     user_table_id                   = p_rec.user_table_id
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    ,user_table_name                 = p_rec.user_table_name
    ,user_row_title                  = p_rec.user_row_title
    where user_table_id = p_rec.user_table_id
    and language = p_rec.language;
Line: 101

End update_dml;
Line: 135

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

End pre_update;
Line: 179

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

    pay_ptt_rku.after_update
      (p_user_table_id
      => p_rec.user_table_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_user_table_name
      => p_rec.user_table_name
      ,p_user_row_title
      => p_rec.user_row_title
      ,p_source_lang_o
      => pay_ptt_shd.g_old_rec.source_lang
      ,p_user_table_name_o
      => pay_ptt_shd.g_old_rec.user_table_name
      ,p_user_row_title_o
      => pay_ptt_shd.g_old_rec.user_row_title
      );
Line: 219

End post_update;
Line: 316

  pay_ptt_bus.update_validate
     (p_rec
     );
Line: 325

  pay_ptt_upd.pre_update(p_rec);
Line: 329

  pay_ptt_upd.update_dml(p_rec);
Line: 394

    select ptt.language
      from pay_user_tables_tl ptt
     where ptt.user_table_id = p_user_table_id
       and p_language_code in (ptt.language
                              ,ptt.source_lang);