DBA Data[Home] [Help]

APPS.PAY_BTH_BUS SQL Statements

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

Line: 27

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_batch_headers bth
     where bth.batch_id = p_batch_id
       and pbg.business_group_id = bth.business_group_id;
Line: 87

    select pbg.legislation_code
      from per_business_groups pbg
         , pay_batch_headers bth
     where bth.batch_id = p_batch_id
       and pbg.business_group_id = bth.business_group_id;
Line: 175

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

End chk_non_updateable_args;
Line: 252

     select pbh.batch_status
       from pay_batch_headers pbh
      where pbh.batch_id = p_batch_id;
Line: 1010

procedure chk_delete
  (p_batch_id                    in    pay_batch_headers.batch_id%TYPE
   ) is
--
  l_proc  varchar2(72) := g_package||'chk_delete';
Line: 1018

    select null
    from   pay_batch_lines btl
    where  btl.batch_id = p_batch_id;
Line: 1023

    select null
    from   pay_batch_control_totals bct
    where  bct.batch_id = p_batch_id;
Line: 1028

    select null
    from   pay_message_lines pml
    where  pml.source_id = p_batch_id
    and    pml.source_type = 'H';
Line: 1097

end chk_delete;
Line: 1102

Procedure insert_validate
  (p_session_date                 in date,
   p_rec                          in pay_bth_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 1158

End insert_validate;
Line: 1163

Procedure update_validate
  (p_session_date                 in date,
   p_rec                          in pay_bth_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 1177

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 1228

End update_validate;
Line: 1233

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

  chk_delete(p_batch_id => p_rec.batch_id);
Line: 1254

End delete_validate;