DBA Data[Home] [Help]

APPS.OTA_LPC_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_lp_sections lpc
     where lpc.learning_path_section_id = p_learning_path_section_id
       and pbg.business_group_id = lpc.business_group_id;
Line: 100

    select pbg.legislation_code
      from per_business_groups_perf pbg
         , ota_lp_sections lpc
     where lpc.learning_path_section_id = p_learning_path_section_id
       and pbg.business_group_id = lpc.business_group_id;
Line: 325

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

End chk_non_updateable_args;
Line: 403

  SELECT learning_path_id
    FROM ota_lp_sections
   WHERE learning_path_section_id = p_learning_path_section_id;
Line: 408

    select 1
      from ota_lp_sections lps
     where lps.learning_path_id = l_lp_id
       and lps.completion_type_code IN ('M', 'S')
       AND (p_learning_path_section_id IS NULL
            OR ( p_learning_path_section_id IS NOT NULL
                 AND p_learning_path_section_id <> lps.learning_path_section_id)) ;
Line: 480

    select 'Y'
      from ota_lp_member_enrollments lme
     where lme.learning_path_section_id = p_learning_path_section_id;
Line: 527

  SELECT learning_path_id
    FROM ota_lp_sections
   WHERE learning_path_section_id = p_learning_path_section_id;
Line: 532

  SELECT count(learning_path_section_id)
    FROM ota_lp_sections
   WHERE learning_path_id = l_lp_id;
Line: 578

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

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

    select count(learning_path_member_id)
      from ota_learning_path_members lpm
     where lpm.learning_path_section_id = p_learning_path_section_id;
Line: 714

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

End insert_validate;
Line: 758

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

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

End update_validate;
Line: 829

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

End delete_validate;