DBA Data[Home] [Help]

APPS.BEN_BATCH_BNFT_CERT_INFO_API SQL Statements

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

Line: 151

procedure update_batch_bnft_cert_info
  (p_validate                       in  boolean   default false
  ,p_batch_benft_cert_id            in  number
  ,p_benefit_action_id              in  number    default hr_api.g_number
  ,p_person_id                      in  number    default hr_api.g_number
  ,p_actn_typ_id                    in  number    default hr_api.g_number
  ,p_typ_cd                         in  varchar2  default hr_api.g_varchar2
  ,p_enrt_ctfn_recd_dt              in  date      default hr_api.g_date
  ,p_object_version_number          in out nocopy number
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_batch_bnft_cert_info';
Line: 174

  savepoint update_batch_bnft_cert_info;
Line: 186

    ben_batch_bnft_cert_info_bk2.update_batch_bnft_cert_info_b
      (
       p_batch_benft_cert_id            =>  p_batch_benft_cert_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_person_id                      =>  p_person_id
      ,p_actn_typ_id                    =>  p_actn_typ_id
      ,p_typ_cd                         =>  p_typ_cd
      ,p_enrt_ctfn_recd_dt              =>  p_enrt_ctfn_recd_dt
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                 => trunc(p_effective_date)
      );
Line: 200

        (p_module_name => 'UPDATE_batch_bnft_cert_info'
        ,p_hook_type   => 'BP'
        );
Line: 224

    ben_batch_bnft_cert_info_bk2.update_batch_bnft_cert_info_a
      (
       p_batch_benft_cert_id            =>  p_batch_benft_cert_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_person_id                      =>  p_person_id
      ,p_actn_typ_id                    =>  p_actn_typ_id
      ,p_typ_cd                         =>  p_typ_cd
      ,p_enrt_ctfn_recd_dt              =>  p_enrt_ctfn_recd_dt
      ,p_object_version_number          =>  l_object_version_number
      ,p_effective_date                => trunc(p_effective_date)
      );
Line: 238

        (p_module_name => 'UPDATE_batch_bnft_cert_info'
        ,p_hook_type   => 'AP'
        );
Line: 267

    ROLLBACK TO update_batch_bnft_cert_info;
Line: 279

    ROLLBACK TO update_batch_bnft_cert_info;
Line: 283

end update_batch_bnft_cert_info;
Line: 288

procedure delete_batch_bnft_cert_info
  (p_validate                       in  boolean  default false
  ,p_batch_benft_cert_id            in  number
  ,p_object_version_number          in out nocopy number
  ,p_effective_date                 in  date
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_batch_bnft_cert_info';
Line: 306

  savepoint delete_batch_bnft_cert_info;
Line: 319

    ben_batch_bnft_cert_info_bk3.delete_batch_bnft_cert_info_b
      (
       p_batch_benft_cert_id            =>  p_batch_benft_cert_id
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 328

        (p_module_name => 'DELETE_batch_bnft_cert_info'
        ,p_hook_type   => 'BP'
        );
Line: 347

    ben_batch_bnft_cert_info_bk3.delete_batch_bnft_cert_info_a
      (
       p_batch_benft_cert_id            =>  p_batch_benft_cert_id
      ,p_object_version_number          =>  l_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 356

        (p_module_name => 'DELETE_batch_bnft_cert_info'
        ,p_hook_type   => 'AP'
        );
Line: 383

    ROLLBACK TO delete_batch_bnft_cert_info;
Line: 394

    ROLLBACK TO delete_batch_bnft_cert_info;
Line: 398

end delete_batch_bnft_cert_info;