DBA Data[Home] [Help]

APPS.BEN_EXT_INCL_CHG_API SQL Statements

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

Line: 153

procedure update_EXT_INCL_CHG
  (p_validate                       in  boolean   default false
  ,p_ext_incl_chg_id                in  number
  ,p_chg_evt_cd                     in  varchar2  default hr_api.g_varchar2
  ,p_chg_evt_source                 in  varchar2  default hr_api.g_varchar2
  ,p_ext_rcd_in_file_id             in  number    default hr_api.g_number
  ,p_ext_data_elmt_in_rcd_id        in  number    default hr_api.g_number
  ,p_business_group_id              in  number    default hr_api.g_number
  ,p_legislation_code               in  varchar2  default hr_api.g_varchar2
  ,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_EXT_INCL_CHG';
Line: 177

  savepoint update_EXT_INCL_CHG;
Line: 189

    ben_EXT_INCL_CHG_bk2.update_EXT_INCL_CHG_b
      (
       p_ext_incl_chg_id                =>  p_ext_incl_chg_id
      ,p_chg_evt_cd                     =>  p_chg_evt_cd
      ,p_chg_evt_source                 =>  p_chg_evt_source
      ,p_ext_rcd_in_file_id             =>  p_ext_rcd_in_file_id
      ,p_ext_data_elmt_in_rcd_id        =>  p_ext_data_elmt_in_rcd_id
      ,p_business_group_id              =>  p_business_group_id
      ,p_legislation_code               =>  p_legislation_code
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                 => trunc(p_effective_date)
      );
Line: 204

        (p_module_name => 'UPDATE_EXT_INCL_CHG'
        ,p_hook_type   => 'BP'
        );
Line: 229

    ben_EXT_INCL_CHG_bk2.update_EXT_INCL_CHG_a
      (
       p_ext_incl_chg_id                =>  p_ext_incl_chg_id
      ,p_chg_evt_cd                     =>  p_chg_evt_cd
      ,p_chg_evt_source                 =>  p_chg_evt_source
      ,p_ext_rcd_in_file_id             =>  p_ext_rcd_in_file_id
      ,p_ext_data_elmt_in_rcd_id        =>  p_ext_data_elmt_in_rcd_id
      ,p_business_group_id              =>  p_business_group_id
      ,p_legislation_code               =>  p_legislation_code
      ,p_object_version_number          =>  l_object_version_number
      ,p_effective_date                => trunc(p_effective_date)
      );
Line: 244

        (p_module_name => 'UPDATE_EXT_INCL_CHG'
        ,p_hook_type   => 'AP'
        );
Line: 273

    ROLLBACK TO update_EXT_INCL_CHG;
Line: 285

    ROLLBACK TO update_EXT_INCL_CHG;
Line: 288

end update_EXT_INCL_CHG;
Line: 293

procedure delete_EXT_INCL_CHG
  (p_validate                       in  boolean  default false
  ,p_ext_incl_chg_id                in  number
  ,p_legislation_code               in varchar2 default null
  ,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_EXT_INCL_CHG';
Line: 312

  savepoint delete_EXT_INCL_CHG;
Line: 325

    ben_EXT_INCL_CHG_bk3.delete_EXT_INCL_CHG_b
      (
       p_ext_incl_chg_id                =>  p_ext_incl_chg_id
      ,p_legislation_code               =>  p_legislation_code
      ,p_object_version_number          =>  p_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 335

        (p_module_name => 'DELETE_EXT_INCL_CHG'
        ,p_hook_type   => 'BP'
        );
Line: 355

    ben_EXT_INCL_CHG_bk3.delete_EXT_INCL_CHG_a
      (
       p_ext_incl_chg_id                =>  p_ext_incl_chg_id
      ,p_legislation_code               =>  p_legislation_code
      ,p_object_version_number          =>  l_object_version_number
    ,p_effective_date                      => trunc(p_effective_date)
      );
Line: 365

        (p_module_name => 'DELETE_EXT_INCL_CHG'
        ,p_hook_type   => 'AP'
        );
Line: 390

    ROLLBACK TO delete_EXT_INCL_CHG;
Line: 401

    ROLLBACK TO delete_EXT_INCL_CHG;
Line: 404

end delete_EXT_INCL_CHG;