DBA Data[Home] [Help]

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

  l_last_update_date  date;
Line: 61

  l_last_updated_by   number;
Line: 62

  l_last_update_login number;
Line: 68

  l_last_update_date   := sysdate;
Line: 69

  l_last_updated_by    := l_current_user_id;
Line: 70

  l_last_update_login  := l_current_user_id;
Line: 76

  update ame_actions_tl
    set
     action_id                       = p_rec.action_id
    ,language                        = p_rec.language
    ,source_lang                     = p_rec.source_lang
    ,description                     = p_rec.description
    ,last_update_date                = l_last_update_date
    ,last_updated_by                 = l_last_updated_by
    ,last_update_login               = l_last_update_login
		where action_id = p_rec.action_id
    and language = p_rec.language;
Line: 111

End update_dml;
Line: 145

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

End pre_update;
Line: 189

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

    ame_acl_rku.after_update
      (p_action_id
      => p_rec.action_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_description
      => p_rec.description
      ,p_source_lang_o
      => ame_acl_shd.g_old_rec.source_lang
      ,p_description_o
      => ame_acl_shd.g_old_rec.description
      );
Line: 225

End post_update;
Line: 318

  ame_acl_bus.update_validate
     (p_rec
     );
Line: 327

  ame_acl_upd.pre_update(p_rec);
Line: 331

  ame_acl_upd.update_dml(p_rec);
Line: 335

  ame_acl_upd.post_update
     (p_rec
     );
Line: 395

    select acl.language
      from ame_actions_tl acl
     where acl.action_id = p_action_id
       and p_language_code in (acl.language
                              ,acl.source_lang);