DBA Data[Home] [Help]

APPS.OTA_OCL_BUS SQL Statements

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

Line: 37

    select pbg.security_group_id
      from per_business_groups pbg
         , ota_competence_languages ocl
     where ocl.competence_language_id = p_competence_language_id
       and pbg.business_group_id = ocl.business_group_id;
Line: 97

    select pbg.legislation_code
      from per_business_groups pbg
         , ota_competence_languages ocl
     where ocl.competence_language_id = p_competence_language_id
       and pbg.business_group_id = ocl.business_group_id;
Line: 324

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

End chk_non_updateable_args;
Line: 379

 SELECT null
 FROM PER_COMPETENCES
 WHERE COMPETENCE_ID = p_competence_id and
 Business_group_id = l_business_group_id ;
Line: 386

 SELECT null
FROM per_competences
WHERE COMPETENCE_ID = p_competence_id and
(business_group_id = l_business_group_id OR
 business_group_id is null);
Line: 466

 SELECT null
 FROM PER_COMPETENCE_LEVELS_V
 WHERE COMPETENCE_ID = p_competence_id AND
 RATING_LEVEL_ID = p_min_proficiency_level_id
 ;
Line: 472

  select null
 from
   per_rating_levels prl
  ,per_competences pce
where (prl.rating_scale_id = pce.rating_scale_id
     OR pce.competence_id = prl.competence_id)
     AND pce.competence_id = p_competence_id
     AND prl.rating_level_id = p_min_proficiency_level_id;
Line: 529

 SELECT null
 FROM OTA_NATURAL_LANGUAGES_V
 WHERE LANGUAGE_code = p_language_code;
Line: 569

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

End insert_validate;
Line: 613

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

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

End update_validate;
Line: 663

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

End delete_validate;