DBA Data[Home] [Help]

APPS.OTA_LPE_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_enrollments lpe
     where lpe.lp_enrollment_id = p_lp_enrollment_id
       and pbg.business_group_id = lpe.business_group_id;
Line: 99

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_lp_enrollments lpe
     where lpe.lp_enrollment_id = p_lp_enrollment_id
       and pbg.business_group_id = lpe.business_group_id;
Line: 364

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

End chk_non_updateable_args;
Line: 406

    select path_source_code
      from ota_learning_paths lps
     where lps.learning_path_id = p_learning_path_id;
Line: 457

        SELECT null
        FROM PER_ALL_PEOPLE_F
        WHERE person_id = p_person_id;
Line: 602

 SELECT null
   FROM ota_lp_member_enrollments lme
  WHERE lme.lp_enrollment_id = p_lp_enrollment_id;
Line: 651

 SELECT null
   FROM ota_lp_enrollments lpe
  WHERE lpe.learning_path_id = p_learning_path_id
    AND ( lpe.person_id = p_person_id and lpe.contact_id IS NULL
          OR lpe.contact_id = p_contact_id and lpe.person_id IS NULL)
    AND lpe.path_status_code <> 'CANCELLED';
Line: 659

 SELECT meaning
 FROM hr_lookups
 WHERE lookup_type = 'OTA_OBJECT_TYPE'
  and lookup_code = 'LP';
Line: 711

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

End insert_validate;
Line: 763

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

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

End update_validate;
Line: 816

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

End delete_validate;