DBA Data[Home] [Help]

APPS.AME_AYL_INS SQL Statements

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

Line: 53

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

  l_last_update_date  date;
Line: 62

  l_last_updated_by   number;
Line: 63

  l_last_update_login number;
Line: 70

  l_last_update_date   := sysdate;
Line: 76

  l_last_updated_by    := l_current_user_id;
Line: 77

  l_last_update_login  := l_current_user_id;
Line: 83

  insert into ame_action_types_tl
      (action_type_id
      ,language
      ,source_lang
      ,user_action_type_name
      ,description
      ,created_by
      ,creation_date
      ,last_update_date
      ,last_updated_by
      ,last_update_login
      )
  Values
    (p_rec.action_type_id
    ,p_rec.language
    ,p_rec.source_lang
    ,p_rec.user_action_type_name
    ,p_rec.description
    ,l_created_by
    ,l_creation_date
    ,l_last_update_date
    ,l_last_updated_by
    ,l_last_update_login
		);
Line: 130

End insert_dml;
Line: 169

Procedure pre_insert
  (p_rec                          in out nocopy ame_ayl_shd.g_rec_type
  ,p_action_type_id               in number
  ) is
--
  l_proc  varchar2(72) := g_package||'pre_insert';
Line: 182

End pre_insert;
Line: 216

Procedure post_insert
  (p_rec                          in ame_ayl_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'post_insert';
Line: 226

    ame_ayl_rki.after_insert
      (p_action_type_id
      => p_rec.action_type_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_user_action_type_name
      => p_rec.user_action_type_name
      ,p_description
      => p_rec.description
      );
Line: 250

End post_insert;
Line: 267

  ame_ayl_bus.insert_validate
     (p_rec
     );
Line: 276

  ame_ayl_ins.pre_insert
    (p_rec                         => p_rec
    ,p_action_type_id              => p_action_type_id
    );
Line: 283

  ame_ayl_ins.insert_dml(p_rec);
Line: 287

  ame_ayl_ins.post_insert
     (p_rec
     );
Line: 355

    select l.language_code
      from fnd_languages l
     where l.installed_flag in ('I','B')
       and not exists (select null
                         from ame_action_types_tl ayl
                        where ayl.action_type_id = p_action_type_id
                          and ayl.language = l.language_code);