DBA Data[Home] [Help]

APPS.PAY_RTT_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id
      from per_business_groups pbg
         , pay_run_types_f_tl rtt
     where rtt.run_type_id = p_run_type_id;
Line: 98

    select pbg.legislation_code
      from per_business_groups     pbg
         , pay_run_types_f_tl rtt
      --   , EDIT_HERE table_name(s) 333
     where rtt.run_type_id = p_run_type_id
       and rtt.language = p_language;
Line: 192

Procedure chk_non_updateable_args
  (p_rec in pay_rtt_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 prt.run_type_id
  FROM   pay_run_types_f prt
  WHERE  prt.run_type_id = p_run_type_id;
Line: 321

select business_group_id
,      legislation_code
from   pay_run_types_f
where  run_type_id = p_run_type_id;
Line: 329

select 'Y'
from   pay_run_types_f prt
,    pay_run_types_f_tl rtt
where prt.run_type_id = rtt.run_type_id
and   rtt.language = p_language
and  upper(p_run_type_name) = upper(rtt.run_type_name)
and   (prt.run_type_id <> p_run_type_id
       or p_run_type_id is null)
and   (p_bus_grp_id = prt.business_group_id + 0
      or (prt.business_group_id is null
          and (p_leg_code = prt.legislation_code
               or prt.legislation_code is null)));
Line: 373

Procedure insert_validate
  (p_rec                          in pay_rtt_shd.g_rec_type
  ,p_run_type_id                  in number
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 394

End insert_validate;
Line: 399

Procedure update_validate
  (p_rec                          in pay_rtt_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 426

  chk_non_updateable_args
    (p_rec              => p_rec
    );
Line: 431

End update_validate;
Line: 436

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

End delete_validate;