DBA Data[Home] [Help]

APPS.BEN_BATCH_DPNT_INFO_API SQL Statements

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

Line: 171

procedure update_batch_dpnt_info
  (p_validate                       in  boolean   default false
  ,p_batch_dpnt_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_pgm_id                         in  number    default hr_api.g_number
  ,p_pl_id                          in  number    default hr_api.g_number
  ,p_oipl_id                        in  number    default hr_api.g_number
  ,p_contact_typ_cd                 in  varchar2  default hr_api.g_varchar2
  ,p_dpnt_person_id                 in  number    default hr_api.g_number
  ,p_business_group_id              in  number    default hr_api.g_number
  ,p_object_version_number          in out nocopy varchar2
  ,p_enrt_cvg_strt_dt               in  date      default hr_api.g_date
  ,p_enrt_cvg_thru_dt               in  date      default hr_api.g_date
  ,p_actn_cd                        in  varchar2  default hr_api.g_varchar2
  ,p_effective_date                 in  date) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_batch_dpnt_info';
Line: 199

  savepoint update_batch_dpnt_info;
Line: 211

    ben_batch_dpnt_info_bk2.update_batch_dpnt_info_b
      (p_batch_dpnt_id                  =>  p_batch_dpnt_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_person_id                      =>  p_person_id
      ,p_pgm_id                         =>  p_pgm_id
      ,p_pl_id                          =>  p_pl_id
      ,p_oipl_id                        =>  p_oipl_id
      ,p_contact_typ_cd                 =>  p_contact_typ_cd
      ,p_dpnt_person_id                 =>  p_dpnt_person_id
      ,p_business_group_id              =>  p_business_group_id
      ,p_object_version_number          =>  p_object_version_number
      ,p_enrt_cvg_strt_dt               =>  p_enrt_cvg_strt_dt
      ,p_enrt_cvg_thru_dt               =>  p_enrt_cvg_thru_dt
      ,p_actn_cd                        =>  p_actn_cd
      ,p_effective_date                 =>  trunc(p_effective_date));
Line: 231

        (p_module_name => 'UPDATE_batch_dpnt_info'
        ,p_hook_type   => 'BP');
Line: 258

    ben_batch_dpnt_info_bk2.update_batch_dpnt_info_a
      (p_batch_dpnt_id                  =>  p_batch_dpnt_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_person_id                      =>  p_person_id
      ,p_pgm_id                         =>  p_pgm_id
      ,p_pl_id                          =>  p_pl_id
      ,p_oipl_id                        =>  p_oipl_id
      ,p_contact_typ_cd                 =>  p_contact_typ_cd
      ,p_dpnt_person_id                 =>  p_dpnt_person_id
      ,p_business_group_id              =>  p_business_group_id
      ,p_object_version_number          =>  l_object_version_number
      ,p_enrt_cvg_strt_dt               =>  p_enrt_cvg_strt_dt
      ,p_enrt_cvg_thru_dt               =>  p_enrt_cvg_thru_dt
      ,p_actn_cd                        =>  p_actn_cd
      ,p_effective_date                 =>  trunc(p_effective_date));
Line: 279

        (p_module_name => 'UPDATE_batch_dpnt_info'
        ,p_hook_type   => 'AP');
Line: 307

    ROLLBACK TO update_batch_dpnt_info;
Line: 319

    ROLLBACK TO update_batch_dpnt_info;
Line: 322

end update_batch_dpnt_info;
Line: 327

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

  savepoint delete_batch_dpnt_info;
Line: 357

    ben_batch_dpnt_info_bk3.delete_batch_dpnt_info_b
      (p_batch_dpnt_id                  =>  p_batch_dpnt_id
      ,p_object_version_number          =>  p_object_version_number
      ,p_effective_date                 =>  trunc(p_effective_date));
Line: 367

        (p_module_name => 'DELETE_batch_dpnt_info'
        ,p_hook_type   => 'BP');
Line: 383

    ben_batch_dpnt_info_bk3.delete_batch_dpnt_info_a
      (p_batch_dpnt_id                  =>  p_batch_dpnt_id
      ,p_object_version_number          =>  l_object_version_number
      ,p_effective_date                 =>  trunc(p_effective_date));
Line: 393

        (p_module_name => 'DELETE_batch_dpnt_info'
        ,p_hook_type   => 'AP');
Line: 417

    ROLLBACK TO delete_batch_dpnt_info;
Line: 428

    ROLLBACK TO delete_batch_dpnt_info;
Line: 431

end delete_batch_dpnt_info;