DBA Data[Home] [Help]

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

  l_last_update_date    ame_approval_groups.last_update_date%TYPE;
Line: 61

  l_last_updated_by     ame_approval_groups.last_updated_by%TYPE;
Line: 62

  l_last_update_login   ame_approval_groups.last_update_login%TYPE;
Line: 76

    l_last_update_date   := sysdate;
Line: 77

    l_last_updated_by    := l_current_user_id;
Line: 78

    l_last_update_login  := l_current_user_id;
Line: 84

  insert into ame_attributes_tl
      (attribute_id
      ,language
      ,source_lang
      ,description
      ,created_by
      ,creation_date
      ,last_update_date
      ,last_updated_by
      ,last_update_login
      )
  Values
    (p_rec.attribute_id
    ,p_rec.language
    ,p_rec.source_lang
    ,p_rec.description
    ,l_created_by
    ,l_creation_date
    ,l_last_update_date
    ,l_last_updated_by
    ,l_last_update_login
    );
Line: 129

End insert_dml;
Line: 168

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

End pre_insert;
Line: 215

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

    ame_atl_rki.after_insert
      (p_attribute_id
      => p_rec.attribute_id
      ,p_language
      => p_rec.language
      ,p_source_lang
      => p_rec.source_lang
      ,p_description
      => p_rec.description
      );
Line: 247

End post_insert;
Line: 264

  ame_atl_bus.insert_validate
     (p_rec
     );
Line: 273

  ame_atl_ins.pre_insert
    (p_rec                         => p_rec
    ,p_attribute_id                => p_attribute_id
    );
Line: 280

  ame_atl_ins.insert_dml(p_rec);
Line: 284

  ame_atl_ins.post_insert
     (p_rec
     );
Line: 349

    select l.language_code
      from fnd_languages l
     where l.installed_flag in ('I','B')
       and not exists (select null
                         from ame_attributes_tl atl
                        where atl.attribute_id = p_attribute_id
                          and atl.language = l.language_code);