DBA Data[Home] [Help]

APPS.PAY_BCT_BUS SQL Statements

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

Line: 32

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_batch_control_totals bct
         , pay_batch_headers bth
     where bct.batch_control_id = p_batch_control_id
       and bth.batch_id = bct.batch_id
       and pbg.business_group_id = bth.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups     pbg
         , pay_batch_control_totals bct
         , pay_batch_headers bth
     where bct.batch_control_id = p_batch_control_id
       and bth.batch_id = bct.batch_id
       and pbg.business_group_id = bth.business_group_id;
Line: 189

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

End chk_non_updateable_args;
Line: 261

     select 'Y'
       from pay_batch_control_totals pct
      where pct.batch_control_id = p_batch_control_id
        and pct.control_status = 'T';
Line: 321

    select null
    from pay_batch_headers bth
    where bth.batch_id = p_batch_id;
Line: 580

  select CURRENCY_CODE into l_curr_code
  from PER_BUSINESS_GROUPS perbg,
      pay_batch_headers pybeeh
  where perbg.BUSINESS_GROUP_ID = pybeeh.BUSINESS_GROUP_ID and
	pybeeh.batch_id = p_batch_id;
Line: 635

procedure chk_delete
  (p_batch_control_id                    in    pay_batch_control_totals.batch_control_id%TYPE
   ) is
--
  l_proc  varchar2(72) := g_package||'chk_delete';
Line: 643

    select null
    from   pay_message_lines pml
    where  pml.source_id = p_batch_control_id
    and    pml.source_type = 'C';
Line: 678

end chk_delete;
Line: 683

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

End insert_validate;
Line: 730

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

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 776

End update_validate;
Line: 781

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

  chk_delete(p_batch_control_id => p_rec.batch_control_id);
Line: 802

End delete_validate;