DBA Data[Home] [Help]

APPS.PQH_LOS_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_situations los
     where los.situation_id = p_situation_id
       and pbg.business_group_id = los.business_group_id;
Line: 92

    select pbg.legislation_code
      from per_business_groups pbg
         , pqh_situations los
     where los.situation_id = p_situation_id
       and pbg.business_group_id = los.business_group_id;
Line: 534

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

End chk_non_updateable_args;
Line: 569

  select situation_id from pqh_situations where
  rownum < 2
  AND   situation_id <> decode(p_situation_id,null,-1,p_situation_id)
  AND  SITUATION = p_situation
  AND SITUATION_TYPE = p_situation_type
  AND LENGTH_OF_SERVICE = p_length_of_service
  AND EMPLOYEE_TYPE = p_employee_type
  AND BUSINESS_GROUP_ID = hr_general.get_business_group_id; --add for BUG#3519152 (reopen)
Line: 599

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

End insert_validate;
Line: 644

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

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

End update_validate;
Line: 693

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

End delete_validate;