DBA Data[Home] [Help]

APPS.PQH_TKT_BUS SQL Statements

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

Line: 33

    select pbg.security_group_id
      from per_business_groups pbg
         , pqh_de_tatigkeit_details tkt
      --   , EDIT_HERE table_name(s) 333
     where tkt.tatigkeit_detail_id = p_tatigkeit_detail_id;
Line: 103

    select pbg.legislation_code
      from per_business_groups     pbg
         , pqh_de_tatigkeit_details tkt
      --   , EDIT_HERE table_name(s) 333
     where tkt.tatigkeit_detail_id = p_tatigkeit_detail_id;
Line: 192

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

End chk_non_updateable_args;
Line: 228

Procedure Chk_delete
 (p_rec  in pqh_tkt_shd.g_rec_type) is
  l_proc  varchar2(72) := g_package||'Ckh_Delete';
Line: 232

select  '1' from per_gen_hierarchy_nodes
where    NODE_TYPE  = 'OPR_JOB_DTLS'
and      entity_id  = p_rec.TATIGKEIT_NUMBER;
Line: 254

End Chk_Delete;
Line: 262

Select  TATIGKEIT_NUMBER
  from  PQH_DE_TATIGKEIT_DETAILS
 Where  TATIGKEIT_NUMBER = p_rec.TATIGKEIT_NUMBER;
Line: 296

Select  Description
  from  PQH_DE_TATIGKEIT_DETAILS
 Where  Description = p_rec.Description;
Line: 330

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

End insert_validate;
Line: 362

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

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

End update_validate;
Line: 400

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

   Chk_delete(P_Rec);
Line: 413

End delete_validate;