DBA Data[Home] [Help]

APPS.PQH_RHT_BUS SQL Statements

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

Line: 110

    select null
    from   per_pos_structure_versions a
    where  a.pos_structure_version_id = p_pos_structure_version_id;
Line: 186

    select null
    from   pqh_routing_list_members a
    where  a.routing_list_member_id = p_forwarded_to_member_id;
Line: 262

    select null
    from   pqh_routing_list_members a
    where  a.routing_list_member_id = p_forwarded_by_member_id;
Line: 338

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

    select null
    from   per_all_positions a
    where  a.position_id = p_forwarded_to_position_id;
Line: 489

    select null
    from   per_all_positions a
    where  a.position_id = p_forwarded_by_position_id;
Line: 565

    select null
    from   pqh_routing_categories a
    where  a.routing_category_id = p_routing_category_id;
Line: 779

    select null
    from   per_all_assignments_f a
    where  a.assignment_id = p_forwarded_to_assignment_id
      and  p_effective_date between a.effective_start_date and a.effective_end_date;
Line: 858

    select null
    from   per_all_assignments_f a
    where  a.assignment_id = p_forwarded_by_assignment_id
      and  p_effective_date between a.effective_start_date and a.effective_end_date;
Line: 936

    select null
    from   pqh_roles a
    where  a.role_id = p_forwarded_to_role_id
    and nvl(a.enable_flag,'X') ='Y';
Line: 1016

    select null
    from   pqh_roles a
    where  a.role_id = p_forwarded_by_role_id
    and nvl(a.enable_flag,'X') ='Y';
Line: 1095

    select null
    from   fnd_user a
    where  a.user_id = p_forwarded_to_user_id;
Line: 1173

    select null
    from   fnd_user a
    where  a.user_id = p_forwarded_by_user_id;
Line: 1219

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

End insert_validate;
Line: 1319

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

End update_validate;
Line: 1421

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

End delete_validate;