DBA Data[Home] [Help]

APPS.PQH_RTM_BUS SQL Statements

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

Line: 110

    select null
    from   pqh_templates a
    where  a.template_id = p_template_id;
Line: 186

    select null
    from   pqh_transaction_categories a
    where  a.transaction_category_id = p_transaction_category_id;
Line: 261

    select null
    from   pqh_roles a
    where  a.role_id = p_role_id;
Line: 339

  select enable_flag
  from pqh_roles
  where role_id=p_role_id;
Line: 402

  select distinct ptc.transaction_category_id, ptc.name transaction_category,
         ptc.business_group_id
  from pqh_routing_list_members rlm, pqh_routing_categories rct,
       pqh_transaction_categories ptc
  where rlm.routing_list_id =  rct.routing_list_id
  and rlm.role_id = p_role_id
  and rct.transaction_category_id=ptc.transaction_category_id;
Line: 475

    select null
    from   pqh_templates a
    where  a.transaction_category_id=p_transaction_category_id
	   and a.template_id = p_template_id;
Line: 545

Procedure chk_non_updateable_args (p_rec  in pqh_rtm_shd.g_rec_type ) is
  --
  l_proc         varchar2(72) := g_package||'chk_non_updateable_args';
Line: 585

End chk_non_updateable_args;
Line: 591

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

End insert_validate;
Line: 641

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

  chk_non_updateable_args(p_rec);
Line: 687

End update_validate;
Line: 692

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

End delete_validate;