DBA Data[Home] [Help]

APPS.PQH_CPD_BUS SQL Statements

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

Line: 29

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , pqh_corps_definitions cpd
     where cpd.corps_definition_id = p_corps_definition_id
       and pbg.business_group_id = cpd.business_group_id;
Line: 105

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , pqh_corps_definitions cpd
     where cpd.corps_definition_id = p_corps_definition_id
       and pbg.business_group_id = cpd.business_group_id;
Line: 384

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

End chk_non_updateable_args;
Line: 421

    SELECT 'X'
    FROM   pqh_corps_definitions
    WHERE  name = p_name
    AND    corps_definition_id <> nvl(p_corps_definition_id,-1)
    AND    business_group_id = p_business_group_id;
Line: 479

      SELECT NULL
        FROM per_shared_types_vl
       WHERE shared_type_id = TO_NUMBER (p_type_of_ps);
Line: 524

    SELECT 'Y'
    FROM    per_shared_types
    WHERE   shared_type_id = p_primary_prof_field_id;
Line: 602

     SELECT  'Y'
     FROM    per_grades
     WHERE   grade_id = p_starting_grade_id
     AND     p_effective_date BETWEEN date_from AND nvl(date_to,to_date('31/12/4712','DD/MM/RRRR'));
Line: 634

     SELECT  'Y'
     FROM    per_grade_spines_f gs,
             per_spinal_point_steps_f sps
     WHERE   gs.grade_id = p_starting_grade_id
     AND     p_effective_date BETWEEN gs.effective_start_date and gs.effective_end_date
     AND     gs.grade_spine_id = sps.grade_spine_id
     AND     sps.step_id = p_starting_grade_step_id
     AND     p_effective_date BETWEEN sps.effective_start_date and sps.effective_end_date;
Line: 797

   SELECT  'Y'
   FROM    ben_pgm_f
   WHERE   pgm_id = p_ben_pgm_id
   AND     p_effective_date BETWEEN effective_start_date AND effective_end_date;
Line: 827

Procedure insert_validate
  (p_effective_date               in date
  ,p_rec                          in pqh_cpd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72) ;
Line: 837

    l_proc := g_package||'insert_validate';
Line: 893

End insert_validate;
Line: 898

Procedure update_validate
  (p_effective_date               in date
  ,p_rec                          in pqh_cpd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 908

    l_proc := g_package||'update_validate';
Line: 957

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

End update_validate;
Line: 974

Procedure delete_validate
  (p_rec                          in pqh_cpd_shd.g_rec_type
  ) is
--
  l_proc  varchar2(72);
Line: 983

    l_proc := g_package||'delete_validate';
Line: 992

End delete_validate;