DBA Data[Home] [Help]

APPS.PQH_OPL_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_operations opl
      --   , EDIT_HERE table_name(s) 333
     where opl.operation_id = p_operation_id;
Line: 103

    select pbg.legislation_code
      from per_business_groups     pbg
         , pqh_de_operations opl
      --   , EDIT_HERE table_name(s) 333
     where opl.operation_id = p_operation_id;
Line: 192

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

End chk_non_updateable_args;
Line: 229

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

select  '1' from per_gen_hierarchy_nodes
where    NODE_TYPE  = 'OPR_OPTS'
and      entity_id  = p_rec.OPERATION_NUMBER;
Line: 255

End Chk_Delete;
Line: 264

Select  Description
  from  PQH_DE_OPERATIONS
 Where  Description = p_rec.Description;
Line: 296

Select  OPERATION_NUMBER
  from  PQH_DE_OPERATIONS
 Where  OPERATION_NUMBER = p_rec.OPERATION_NUMBER;
Line: 324

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

End insert_validate;
Line: 356

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

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

End update_validate;
Line: 392

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

   Chk_delete(P_Rec);
Line: 405

End delete_validate;