DBA Data[Home] [Help]

APPS.OTA_LPM_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
         , ota_learning_path_members lpm
     where lpm.learning_path_member_id = p_learning_path_member_id
       and pbg.business_group_id = lpm.business_group_id;
Line: 100

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_learning_path_members lpm
     where lpm.learning_path_member_id = p_learning_path_member_id
       and pbg.business_group_id = lpm.business_group_id;
Line: 325

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

End chk_non_updateable_args;
Line: 369

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

  SELECT oad.business_group_id
    FROM ota_activity_versions  oav,
         ota_activity_definitions oad
   WHERE oav.activity_id = oad.activity_id
     AND oav.activity_version_id = p_activity_version_id;
Line: 553

        SELECT NULL
        FROM OTA_LEARNING_PATHS
        WHERE learning_path_id    = p_learning_path_id
        AND   business_group_id   = p_business_group_id;
Line: 622

        SELECT NULL
        FROM OTA_LEARNING_PATH_MEMBERS
        WHERE learning_path_id       = p_learning_path_id
        AND (p_activity_version_id IS NOT NULL AND
               p_activity_version_id = activity_version_id)
        AND (p_learning_path_member_id IS NULL
              OR p_learning_path_member_id <> learning_path_member_id);
Line: 713

        SELECT NULL
        FROM OTA_LEARNING_PATH_MEMBERS
        WHERE learning_path_id       = p_learning_path_id
        AND  (p_course_sequence IS NOT NULL AND
               p_course_sequence = course_sequence)
        AND (p_learning_path_member_id IS NULL
              OR p_learning_path_member_id <> learning_path_member_id);
Line: 936

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

End insert_validate;
Line: 1014

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

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

End update_validate;
Line: 1075

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

End delete_validate;