DBA Data[Home] [Help]

APPS.PQH_TAT_BUS SQL Statements

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

Line: 111

    select freeze_status_cd
    from   pqh_templates a
    where  a.template_id = p_template_id;
Line: 194

    select nvl(enable_flag,'N')
    from   pqh_attributes a
    where  a.attribute_id = p_attribute_id;
Line: 199

    select att.attribute_name
      from pqh_attributes_vl att,pqh_template_attributes tat
     where tat.attribute_id = p_attribute_id
       and tat.template_id = p_template_id
       and tat.attribute_id = att.attribute_id;
Line: 305

  l_select_flag  pqh_txn_category_attributes.select_flag%type;
Line: 308

    select transaction_category_id
    from   pqh_templates a
    where  a.template_id = p_template_id;
Line: 313

    select nvl(tca.select_flag,'N')
    from   pqh_attributes att , pqh_txn_category_attributes tca
    where  att.attribute_id = p_attribute_id
      AND  att.attribute_id = tca.attribute_id
      AND  tca.transaction_category_id = l_tem_tct;
Line: 339

    fetch c2 into l_select_flag;
Line: 351

    If l_select_flag <> 'Y' then
       hr_utility.set_message(8302,'PQH_ATTRIBUTE_NOT_SELECTABLE');
Line: 378

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

   select legislation_code, attribute_name
   from pqh_attributes_vl
   where attribute_id = p_attribute_id;
Line: 708

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

End insert_validate;
Line: 777

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

End update_validate;
Line: 846

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

End delete_validate;
Line: 866

  Select attribute_name
    From pqh_attributes
   Where attribute_id = p_attribute_id;