DBA Data[Home] [Help]

APPS.PAY_AMO_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pay_au_modules amo
     where amo.module_id = p_module_id
       and pbg.business_group_id (+) = amo.business_group_id;
Line: 101

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , pay_au_modules amo
     where amo.module_id = p_module_id
       and pbg.business_group_id (+) = amo.business_group_id;
Line: 191

Procedure chk_non_updateable_args
  (p_rec in pay_amo_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72);
Line: 199

  l_proc := g_package || 'chk_non_updateable_args';
Line: 217

End chk_non_updateable_args;
Line: 283

  select 1
  from per_business_groups pbg
  where pbg.business_group_id = p_bg_id
  and   pbg.legislation_code  = p_leg_code;
Line: 316

Procedure insert_validate
  (p_rec                          in pay_amo_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 323

  l_proc := g_package||'insert_validate';
Line: 338

End insert_validate;
Line: 343

Procedure update_validate
  (p_rec                          in pay_amo_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 350

  l_proc := g_package||'update_validate';
Line: 363

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 369

End update_validate;
Line: 374

Procedure delete_validate
  (p_rec                          in pay_amo_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 381

  l_proc := g_package||'delete_validate';
Line: 389

End delete_validate;