DBA Data[Home] [Help]

APPS.AME_ITL_BUS SQL Statements

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

Line: 34

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ame_item_classes_tl itl
      --   , EDIT_HERE table_name(s) 333
     where itl.item_class_id = p_item_class_id;
Line: 113

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , ame_item_classes_tl itl
      --   , EDIT_HERE table_name(s) 333
     where itl.item_class_id = p_item_class_id
       and itl.language = p_language;
Line: 207

Procedure chk_non_updateable_args
  (p_rec in ame_itl_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 231

End chk_non_updateable_args;
Line: 236

Procedure insert_validate
  (p_rec                          in ame_itl_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 259

End insert_validate;
Line: 264

Procedure update_validate
  (p_rec                          in ame_itl_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 285

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 291

End update_validate;
Line: 296

Procedure delete_validate
  (p_rec                          in ame_itl_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 308

End delete_validate;