DBA Data[Home] [Help]

APPS.OTA_LP_SECTION_API SQL Statements

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

Line: 245

procedure update_lp_section
  (p_validate                      in     boolean  default false
  ,p_effective_date                in     date
  ,p_learning_path_section_id      in     number
  ,p_section_name                  in     varchar2
  ,p_description                   in     varchar2 default hr_api.g_varchar2
  ,p_object_version_number         in out nocopy number
  ,p_section_sequence              in     number   default hr_api.g_number
  ,p_completion_type_code          in     varchar2 default hr_api.g_varchar2
  ,p_no_of_mandatory_courses       in     number   default hr_api.g_number
  ,p_attribute_category            in     varchar2 default hr_api.g_varchar2
  ,p_attribute1                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute2                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute3                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute4                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute5                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute6                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute7                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute8                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute9                    in     varchar2 default hr_api.g_varchar2
  ,p_attribute10                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute11                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute12                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute13                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute14                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute15                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute16                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute17                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute18                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute19                   in     varchar2 default hr_api.g_varchar2
  ,p_attribute20                   in     varchar2 default hr_api.g_varchar2
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc                    varchar2(72) := g_package||' Update Learning Path Section';
Line: 289

  SELECT completion_type_code
    FROM ota_lp_sections
   WHERE learning_path_section_id = p_learning_path_section_id;
Line: 294

  SELECT learning_path_member_id,
         object_version_number,
         activity_version_id,
         course_sequence
    FROM ota_learning_path_members
   WHERE learning_path_section_id = p_learning_path_section_id
     AND (duration IS NOT NULL OR
          duration_units is not null OR
          notify_days_before_target IS NOT NULL);
Line: 309

  savepoint update_lp_section;
Line: 329

    ota_lp_section_bk2.update_lp_section_b
  (p_effective_date                 => l_effective_date
  ,p_learning_path_section_id       => p_learning_path_section_id
  ,p_section_name                   => p_section_name
  ,p_description                    => p_description
  ,p_object_version_number          => l_object_version_number
  ,p_section_sequence               => p_section_sequence
  ,p_completion_type_code           => p_completion_type_code
  ,p_no_of_mandatory_courses        => l_no_of_mandatory_courses
  ,p_attribute_category             => p_attribute_category
  ,p_attribute1                     => p_attribute1
  ,p_attribute2                     => p_attribute2
  ,p_attribute3                     => p_attribute3
  ,p_attribute4                     => p_attribute4
  ,p_attribute5                     => p_attribute5
  ,p_attribute6                     => p_attribute6
  ,p_attribute7                     => p_attribute7
  ,p_attribute8                     => p_attribute8
  ,p_attribute9                     => p_attribute9
  ,p_attribute10                    => p_attribute10
  ,p_attribute11                    => p_attribute11
  ,p_attribute12                    => p_attribute12
  ,p_attribute13                    => p_attribute13
  ,p_attribute14                    => p_attribute14
  ,p_attribute15                    => p_attribute15
  ,p_attribute16                    => p_attribute16
  ,p_attribute17                    => p_attribute17
  ,p_attribute18                    => p_attribute18
  ,p_attribute19                    => p_attribute19
  ,p_attribute20                    => p_attribute20
  );
Line: 363

        (p_module_name => 'Update_Lp_Section'
        ,p_hook_type   => 'BP'
        );
Line: 416

  ota_lp_section_bk2.update_lp_section_a
  (p_effective_date                 => l_effective_date
  ,p_learning_path_section_id       => p_learning_path_section_id
  ,p_section_name                   => p_section_name
  ,p_description                    => p_description
  ,p_object_version_number          => l_object_version_number
  ,p_section_sequence               => p_section_sequence
  ,p_completion_type_code           => p_completion_type_code
  ,p_no_of_mandatory_courses        => l_no_of_mandatory_courses
  ,p_attribute_category             => p_attribute_category
  ,p_attribute1                     => p_attribute1
  ,p_attribute2                     => p_attribute2
  ,p_attribute3                     => p_attribute3
  ,p_attribute4                     => p_attribute4
  ,p_attribute5                     => p_attribute5
  ,p_attribute6                     => p_attribute6
  ,p_attribute7                     => p_attribute7
  ,p_attribute8                     => p_attribute8
  ,p_attribute9                     => p_attribute9
  ,p_attribute10                    => p_attribute10
  ,p_attribute11                    => p_attribute11
  ,p_attribute12                    => p_attribute12
  ,p_attribute13                    => p_attribute13
  ,p_attribute14                    => p_attribute14
  ,p_attribute15                    => p_attribute15
  ,p_attribute16                    => p_attribute16
  ,p_attribute17                    => p_attribute17
  ,p_attribute18                    => p_attribute18
  ,p_attribute19                    => p_attribute19
  ,p_attribute20                    => p_attribute20
  );
Line: 450

        (p_module_name => 'Update_Lp_Section'
        ,p_hook_type   => 'AP'
        );
Line: 461

    ota_lp_member_api.update_learning_path_member
       (p_validate                      => p_validate
       ,p_effective_date                => l_effective_date
       ,p_learning_path_member_id       => csr_lpms.learning_path_member_id
       ,p_object_version_number         => l_lpm_ovn
       ,p_activity_version_id           => csr_lpms.activity_version_id
       ,p_course_sequence               => csr_lpms.course_sequence
       ,p_duration                      => null
       ,p_duration_units                => null
       ,p_notify_days_before_target     => null);
Line: 492

    rollback to update_lp_section;
Line: 504

    rollback to update_lp_section;
Line: 508

end update_lp_section;
Line: 515

procedure delete_lp_section
  (p_validate                      in     boolean  default false
  ,p_learning_path_section_id       in     number
  ,p_object_version_number         in     number
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc                    varchar2(72) := g_package||' Delete Learning Path Section';
Line: 530

  savepoint delete_lp_section;
Line: 535

    ota_lp_section_bk3.delete_lp_section_b
    (p_learning_path_section_id     => p_learning_path_section_id
    ,p_object_version_number       => p_object_version_number
    );
Line: 542

        (p_module_name => 'Delete_Learning_Path_Section'
        ,p_hook_type   => 'BP'
        );
Line: 560

  ota_lp_section_bk3.delete_lp_section_a
  (p_learning_path_section_id     => p_learning_path_section_id
  ,p_object_version_number       => p_object_version_number
  );
Line: 567

        (p_module_name => 'Delete_Lp_Section'
        ,p_hook_type   => 'AP'
        );
Line: 588

    rollback to delete_lp_section;
Line: 599

    rollback to delete_lp_section;
Line: 602

end delete_lp_section;