Interface CostCenterTestServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<CostCenterTestServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<CostCenterTestServiceBatch>
- All Known Implementing Classes:
DefaultCostCenterTestServiceBatchChangeSet
public interface CostCenterTestServiceBatchChangeSet
extends FluentHelperBatchChangeSet<CostCenterTestServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<CostCenterTestServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
CostCenterTestService.-
Method Summary
Modifier and TypeMethodDescriptioncreateCostCenter(CostCenter costCenter) Create a newCostCenterentity and save it to the S/4HANA system.createCostCenterText(CostCenterText costCenterText) Create a newCostCenterTextentity and save it to the S/4HANA system.deleteCostCenter(CostCenter costCenter) Deletes an existingCostCenterentity in the S/4HANA system.deleteCostCenterText(CostCenterText costCenterText) Deletes an existingCostCenterTextentity in the S/4HANA system.updateCostCenter(CostCenter costCenter) Update an existingCostCenterentity and save it to the S/4HANA system.updateCostCenterText(CostCenterText costCenterText) Update an existingCostCenterTextentity and save it to the S/4HANA system.Methods inherited from interface com.sap.cloud.sdk.datamodel.odata.helper.batch.FluentHelperBatchChangeSet
addFunctionImportMethods inherited from interface com.sap.cloud.sdk.datamodel.odata.helper.batch.FluentHelperBatchEndChangeSet
endChangeSet
-
Method Details
-
createCostCenter
Create a newCostCenterentity and save it to the S/4HANA system.- Parameters:
costCenter-CostCenterentity object that will be created in the S/4HANA system.- Returns:
- This fluent helper to continue adding operations to the change set. To finalize the current change set
call
endChangeSeton the returned fluent helper object.
-
updateCostCenter
Update an existingCostCenterentity and save it to the S/4HANA system.- Parameters:
costCenter-CostCenterentity object that will be updated in the S/4HANA system.- Returns:
- This fluent helper to continue adding operations to the change set. To finalize the current change set
call
endChangeSeton the returned fluent helper object.
-
deleteCostCenter
Deletes an existingCostCenterentity in the S/4HANA system.- Parameters:
costCenter-CostCenterentity object that will be deleted in the S/4HANA system.- Returns:
- This fluent helper to continue adding operations to the change set. To finalize the current change set
call
endChangeSeton the returned fluent helper object.
-
createCostCenterText
@Nonnull CostCenterTestServiceBatchChangeSet createCostCenterText(@Nonnull CostCenterText costCenterText) Create a newCostCenterTextentity and save it to the S/4HANA system.- Parameters:
costCenterText-CostCenterTextentity object that will be created in the S/4HANA system.- Returns:
- This fluent helper to continue adding operations to the change set. To finalize the current change set
call
endChangeSeton the returned fluent helper object.
-
updateCostCenterText
@Nonnull CostCenterTestServiceBatchChangeSet updateCostCenterText(@Nonnull CostCenterText costCenterText) Update an existingCostCenterTextentity and save it to the S/4HANA system.- Parameters:
costCenterText-CostCenterTextentity object that will be updated in the S/4HANA system.- Returns:
- This fluent helper to continue adding operations to the change set. To finalize the current change set
call
endChangeSeton the returned fluent helper object.
-
deleteCostCenterText
@Nonnull CostCenterTestServiceBatchChangeSet deleteCostCenterText(@Nonnull CostCenterText costCenterText) Deletes an existingCostCenterTextentity in the S/4HANA system.- Parameters:
costCenterText-CostCenterTextentity object that will be deleted in the S/4HANA system.- Returns:
- This fluent helper to continue adding operations to the change set. To finalize the current change set
call
endChangeSeton the returned fluent helper object.
-