DBA Data[Home] [Help]

APPS.AME_AGL_BUS SQL Statements

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

Line: 48

    select count(*)
      from ame_approval_groups
      where approval_group_id = p_approval_group_id
        and sysdate >= start_date and sysdate < end_date;
Line: 204

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

End chk_non_updateable_args;
Line: 233

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

End insert_validate;
Line: 269

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 300

End update_validate;
Line: 305

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

End delete_validate;