DBA Data[Home] [Help]

APPS.BEN_BATCH_COMMU_INFO_API SQL Statements

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

Line: 160

procedure update_batch_commu_info
  (p_validate                       in  boolean   default false
  ,p_batch_commu_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_per_cm_id                      in  number    default hr_api.g_number
  ,p_cm_typ_id                      in  number    default hr_api.g_number
  ,p_business_group_id              in  number    default hr_api.g_number
  ,p_per_cm_prvdd_id                in  number    default hr_api.g_number
  ,p_to_be_sent_dt                  in  date      default hr_api.g_date
  ,p_object_version_number          in out nocopy number
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_batch_commu_info';
Line: 184

  savepoint update_batch_commu_info;
Line: 196

    ben_batch_commu_info_bk2.update_batch_commu_info_b
      (
       p_batch_commu_id                 =>  p_batch_commu_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_person_id                      =>  p_person_id
      ,p_per_cm_id                      =>  p_per_cm_id
      ,p_cm_typ_id                      =>  p_cm_typ_id
      ,p_business_group_id              =>  p_business_group_id
      ,p_per_cm_prvdd_id                =>  p_per_cm_prvdd_id
      ,p_to_be_sent_dt                  =>  p_to_be_sent_dt
      ,p_object_version_number          =>  p_object_version_number
      );
Line: 211

        (p_module_name => 'UPDATE_batch_commu_info'
        ,p_hook_type   => 'BP'
        );
Line: 236

    ben_batch_commu_info_bk2.update_batch_commu_info_a
      (
       p_batch_commu_id                 =>  p_batch_commu_id
      ,p_benefit_action_id              =>  p_benefit_action_id
      ,p_person_id                      =>  p_person_id
      ,p_per_cm_id                      =>  p_per_cm_id
      ,p_cm_typ_id                      =>  p_cm_typ_id
      ,p_business_group_id              =>  p_business_group_id
      ,p_per_cm_prvdd_id                =>  p_per_cm_prvdd_id
      ,p_to_be_sent_dt                  =>  p_to_be_sent_dt
      ,p_object_version_number          =>  l_object_version_number
      );
Line: 251

        (p_module_name => 'UPDATE_batch_commu_info'
        ,p_hook_type   => 'AP'
        );
Line: 280

    ROLLBACK TO update_batch_commu_info;
Line: 292

    ROLLBACK TO update_batch_commu_info;
Line: 295

end update_batch_commu_info;
Line: 300

procedure delete_batch_commu_info
  (p_validate                       in  boolean  default false
  ,p_batch_commu_id                 in  number
  ,p_object_version_number          in out nocopy number
  ) is
  --
  -- Declare cursors and local variables
  --
  l_proc varchar2(72) := g_package||'update_batch_commu_info';
Line: 317

  savepoint delete_batch_commu_info;
Line: 330

    ben_batch_commu_info_bk3.delete_batch_commu_info_b
      (
       p_batch_commu_id                 =>  p_batch_commu_id
      ,p_object_version_number          =>  p_object_version_number
      );
Line: 338

        (p_module_name => 'DELETE_batch_commu_info'
        ,p_hook_type   => 'BP'
        );
Line: 356

    ben_batch_commu_info_bk3.delete_batch_commu_info_a
      (
       p_batch_commu_id                 =>  p_batch_commu_id
      ,p_object_version_number          =>  l_object_version_number
      );
Line: 364

        (p_module_name => 'DELETE_batch_commu_info'
        ,p_hook_type   => 'AP'
        );
Line: 389

    ROLLBACK TO delete_batch_commu_info;
Line: 400

    ROLLBACK TO delete_batch_commu_info;
Line: 403

end delete_batch_commu_info;