DBA Data[Home] [Help]

APPS.PQH_RFT_BUS SQL Statements

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

Line: 114

    select nvl(enable_flag,hr_api.g_varchar2),
           nvl(attribute_only_flag,hr_api.g_varchar2),
           nvl(freeze_status_cd ,hr_api.g_varchar2)
    from   pqh_templates a
    where  a.template_id = p_base_template_id;
Line: 215

    select nvl(freeze_status_cd,hr_api.g_varchar2) ,
           nvl(attribute_only_flag,hr_api.g_varchar2)
    from   pqh_templates a
    where  a.template_id = p_parent_template_id;
Line: 287

  select legislation_code, template_name
  from pqh_templates_vl
  where template_id = p_template_id;
Line: 441

  select transaction_category_id
  from pqh_templates a
  where a.template_id = p_parent_template_id;
Line: 446

  select transaction_category_id
  from pqh_templates a
  where a.template_id = p_base_template_id;
Line: 486

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

End insert_validate;
Line: 538

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

End update_validate;
Line: 592

Procedure delete_validate(p_rec in pqh_rft_shd.g_rec_type
                         ,p_effective_date in date) is
--
  l_proc  varchar2(72) := g_package||'delete_validate';
Line: 603

End delete_validate;