DBA Data[Home] [Help]

APPS.AME_CAL_BUS SQL Statements

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

Line: 49

    select null
      from ame_calling_apps
     where application_id = p_application_id
       and p_effective_date between start_date
             and nvl(end_date - ame_util.oneSecond, p_effective_date);
Line: 118

    select null
      from ame_calling_apps_tl cal
       where cal.application_name = p_application_name
       and cal.language = p_language;
Line: 205

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

End chk_non_updateable_args;
Line: 237

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

End insert_validate;
Line: 270

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 301

End update_validate;
Line: 306

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

End delete_validate;