DBA Data[Home] [Help]

APPS.HR_SALARY_SURVEY_API SQL Statements

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

Line: 233

procedure update_salary_survey
  (p_validate                      in     boolean  default false
  ,p_survey_name                   in     varchar2 default hr_api.g_varchar2
--ras  ,p_currency_code                 in     varchar2 default hr_api.g_varchar2
  ,p_survey_type_code              in     varchar2 default hr_api.g_varchar2
  ,p_base_region                   in     varchar2 default hr_api.g_varchar2
  ,p_effective_date                in     date     default hr_api.g_date
  ,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
  ,p_salary_survey_id              in     number
  ,p_object_version_number         in out nocopy number
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc                  varchar2(72) := g_package||'update_salary_survey';
Line: 278

  savepoint update_salary_survey;
Line: 287

    hr_salary_survey_bk2.update_salary_survey_b
     (p_survey_name           => p_survey_name,
--ras      p_currency_code         => p_currency_code,
      p_survey_type_code      => p_survey_type_code,
      p_base_region           => p_base_region,
      p_effective_date        => p_effective_date,
      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,
      p_object_version_number => l_object_version_number
     );
Line: 320

        (p_module_name => 'update_salary_survey'
        ,p_hook_type   => 'BP'
        );
Line: 362

    hr_salary_survey_bk2.update_salary_survey_a
     (p_salary_survey_id      => l_salary_survey_id,
      p_object_version_number => l_object_version_number,
      p_survey_name           => p_survey_name,
--ras      p_currency_code         => p_currency_code,
      p_survey_type_code      => p_survey_type_code,
      p_base_region           => p_base_region,
      p_effective_date        => p_effective_date,
      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: 395

        (p_module_name => 'update_salary_survey'
        ,p_hook_type   => 'AP'
        );
Line: 421

    rollback to update_salary_survey;
Line: 436

    rollback to update_salary_survey;
Line: 442

end update_salary_survey;
Line: 450

procedure delete_salary_survey
  (p_validate                      in     boolean  default false
  ,p_salary_survey_id              in     number
  ,p_object_version_number         in     number
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc                  varchar2(72) := g_package||'delete_salary_survey';
Line: 468

  savepoint delete_salary_survey;
Line: 481

    hr_salary_survey_bk3.delete_salary_survey_b
     (p_salary_survey_id      => l_salary_survey_id
     ,p_object_version_number => l_object_version_number
     );
Line: 488

        (p_module_name => 'delete_salary_survey'
        ,p_hook_type   => 'BP'
        );
Line: 506

    hr_salary_survey_bk3.delete_salary_survey_a
     (p_salary_survey_id      => l_salary_survey_id
     ,p_object_version_number => l_object_version_number
     );
Line: 513

        (p_module_name => 'delete_salary_survey'
        ,p_hook_type   => 'AP'
        );
Line: 535

    rollback to delete_salary_survey;
Line: 548

    rollback to delete_salary_survey;
Line: 554

end delete_salary_survey;