DBA Data[Home] [Help]

APPS.PQH_OPS_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id
      from per_business_groups pbg
         , pqh_de_wrkplc_vldtn_ops ops
     where ops.wrkplc_vldtn_op_id = p_wrkplc_vldtn_op_id
       and pbg.business_group_id = ops.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups pbg
         , pqh_de_wrkplc_vldtn_ops ops
     where ops.wrkplc_vldtn_op_id = p_wrkplc_vldtn_op_id
       and pbg.business_group_id = ops.business_group_id;
Line: 180

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

End chk_non_updateable_args;
Line: 219

  Select Employment_type, Remuneration_regulation
  from  Pqh_De_Wrkplc_Vldtns a, Pqh_De_Wrkplc_Vldtn_Vers b
  Where Wrkplc_Vldtn_Ver_Id = p_rec.Wrkplc_Vldtn_Ver_Id
    and a.Wrkplc_Vldtn_Id   = b.Wrkplc_Vldtn_id;
Line: 255

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

End insert_validate;
Line: 293

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

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

End update_validate;
Line: 330

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

End delete_validate;