DBA Data[Home] [Help]

APPS.PAY_APP_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pay_au_process_parameters app
         , pay_au_processes ap
     where app.process_parameter_id = p_process_parameter_id
       and pbg.business_group_id(+) = ap.business_group_id
       and ap.process_id = app.process_id;
Line: 103

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pay_au_process_parameters app
         , pay_au_processes ap
     where app.process_parameter_id = p_process_parameter_id
       and pbg.business_group_id(+) = ap.business_group_id
       and ap.process_id = app.process_id;
Line: 197

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

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

End chk_non_updateable_args;
Line: 228

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

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

End insert_validate;
Line: 254

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

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 280

End update_validate;
Line: 285

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

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

End delete_validate;