DBA Data[Home] [Help]

APPS.GHR_COMPL_AGENCY_COSTS_API SQL Statements

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

Line: 156

procedure update_agency_costs
  (p_validate                       in     boolean  default false
  ,p_effective_date                 in     date
  ,p_compl_agency_cost_id           in     number
  ,p_complaint_id                   in     number   default hr_api.g_number
  ,p_phase                          in     varchar2 default hr_api.g_varchar2
  ,p_stage                          in     varchar2 default hr_api.g_varchar2
  ,p_category                       in     varchar2 default hr_api.g_varchar2
  ,p_amount                         in     number   default hr_api.g_number
  ,p_cost_date                      in     date     default hr_api.g_date
  ,p_description                    in     varchar2 default hr_api.g_varchar2
  ,p_object_version_number          in out nocopy number
  )

is
  l_proc                varchar2(72) := g_package||'update_agency_costs';
Line: 178

   savepoint update_agency_costs;
Line: 190

    ghr_compl_agency_costs_bk2.update_agency_costs_b
      (p_effective_date                 => trunc(p_effective_date)
      ,p_complaint_id                   => p_complaint_id
      ,p_phase                          => p_phase
      ,p_stage                          => p_stage
      ,p_category                       => p_category
      ,p_amount                         => p_amount
      ,p_cost_date                      => p_cost_date
      ,p_description                    => p_description
      ,p_compl_agency_cost_id           => p_compl_agency_cost_id
      ,p_object_version_number          => p_object_version_number
      );
Line: 205

        (p_module_name => 'UPDATE_AGENCY_COSTS'
        ,p_hook_type   => 'BP'
        );
Line: 234

    ghr_compl_agency_costs_bk2.update_agency_costs_a
      (p_effective_date                 => trunc(p_effective_date)
      ,p_complaint_id                   => p_complaint_id
      ,p_phase                          => p_phase
      ,p_stage                          => p_stage
      ,p_category                       => p_category
      ,p_amount                         => p_amount
      ,p_cost_date                      => p_cost_date
      ,p_description                    => p_description
      ,p_compl_agency_cost_id           => p_compl_agency_cost_id
      ,p_object_version_number          => l_object_version_number
      );
Line: 249

        (p_module_name => 'UPDATE_AGENCY_COSTS'
        ,p_hook_type   => 'AP'
        );
Line: 271

    rollback to update_agency_costs;
Line: 283

    rollback to update_agency_costs;
Line: 291

end update_agency_costs;
Line: 297

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

  savepoint delete_agency_costs;
Line: 321

    ghr_compl_agency_costs_bk3.delete_agency_costs_b
      (p_compl_agency_cost_id           => p_compl_agency_cost_id
      ,p_object_version_number          => p_object_version_number
      );
Line: 328

        (p_module_name => 'DELETE_AGENCY_COSTS'
        ,p_hook_type   => 'BP'
        );
Line: 346

    ghr_compl_agency_costs_bk3.delete_agency_costs_a
      (p_compl_agency_cost_id           => p_compl_agency_cost_id
      ,p_object_version_number          => p_object_version_number
      );
Line: 353

        (p_module_name => 'DELETE_AGENCY_COSTS'
        ,p_hook_type   => 'AP'
        );
Line: 369

    ROLLBACK TO delete_agency_costs;
Line: 372

    ROLLBACK TO delete_agency_costs;
Line: 376

end delete_agency_costs;