DBA Data[Home] [Help]

APPS.PAY_TXR_BUS SQL Statements

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

Line: 47

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pay_taxability_rules txr
      --   , EDIT_HERE table_name(s) 333
     where txr.jurisdiction_code = p_jurisdiction_code
       and nvl(txr.tax_type, 'X') = nvl(p_tax_type, 'X')
       and nvl(txr.tax_category, 'X') = nvl(p_tax_category, 'X')
       and nvl(txr.classification_id, 0) = nvl(p_classification_id, 0)
       and nvl(txr.secondary_classification_id, 0) =
                             nvl(p_secondary_classification_id, 0)
       and txr.taxability_rules_date_id = p_taxability_rules_date_id;
Line: 165

    select pbg.legislation_code
      from per_business_groups_perf     pbg
         , pay_taxability_rules txr
      --   , EDIT_HERE table_name(s) 333
     where txr.jurisdiction_code = p_jurisdiction_code
       and nvl(txr.tax_type, 'X') = nvl(p_tax_type, 'X')
       and nvl(txr.tax_category, 'X') = nvl(p_tax_category, 'X')
       and nvl(txr.classification_id, 0) = nvl(p_classification_id, 0)
       and nvl(txr.secondary_classification_id, 0) =
                         nvl(p_secondary_classification_id, 0)
       and txr.taxability_rules_date_id = p_taxability_rules_date_id;
Line: 297

Procedure chk_non_updateable_args
  (p_effective_date               in date
  ,p_rec in pay_txr_shd.g_rec_type
  ) IS
--
  l_proc     varchar2(72) := g_package || 'chk_non_updateable_args';
Line: 326

End chk_non_updateable_args;
Line: 331

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in pay_txr_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'insert_validate';
Line: 355

End insert_validate;
Line: 360

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in pay_txr_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) := g_package||'update_validate';
Line: 382

  chk_non_updateable_args
    (p_effective_date              => p_effective_date
      ,p_rec              => p_rec
    );
Line: 389

End update_validate;
Line: 394

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

End delete_validate;