DBA Data[Home] [Help]

APPS.PAY_AMP_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_module_parameters amp
         , pay_au_modules am
     where amp.module_parameter_id = p_module_parameter_id
       and pbg.business_group_id (+) = am.business_group_id
       and am.module_id = amp.module_id;
Line: 103

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pay_au_module_parameters amp
         , pay_au_modules am
     where amp.module_parameter_id = p_module_parameter_id
       and pbg.business_group_id(+) = am.business_group_id
       and am.module_id = amp.module_id;
Line: 195

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

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

End chk_non_updateable_args;
Line: 226

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

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

End insert_validate;
Line: 252

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 277

End update_validate;
Line: 282

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

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

End delete_validate;