DBA Data[Home] [Help]

APPS.OTA_LME_BUS SQL Statements

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

Line: 28

    select pbg.security_group_id,
           pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_lp_member_enrollments lme
     where lme.lp_member_enrollment_id = p_lp_member_enrollment_id
       and pbg.business_group_id = lme.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_lp_member_enrollments lme
     where lme.lp_member_enrollment_id = p_lp_member_enrollment_id
       and pbg.business_group_id = lme.business_group_id;
Line: 369

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

End chk_non_updateable_args;
Line: 474

       SELECT lps.path_source_code
         FROM ota_learning_paths lps,
              ota_lp_enrollments lpe
        WHERE lps.learning_path_id = lpe.learning_path_id
          --AND lps.learning_path_id = p_lp_enrollment_id;
Line: 503

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

End insert_validate;
Line: 539

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

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

End update_validate;
Line: 580

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

End delete_validate;