Interface CostRateServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<CostRateServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<CostRateServiceBatch>
- All Known Implementing Classes:
DefaultCostRateServiceBatchChangeSet
public interface CostRateServiceBatchChangeSet
extends FluentHelperBatchChangeSet<CostRateServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<CostRateServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
CostRateService.-
Method Summary
Modifier and TypeMethodDescriptioncreateActualCostRate(ActualCostRate actualCostRate) Create a newActualCostRateentity and save it to the S/4HANA system.createPlanCostRate(PlanCostRate planCostRate) Create a newPlanCostRateentity and save it to the S/4HANA system.createServiceCostRate(ServiceCostRate serviceCostRate) Create a newServiceCostRateentity and save it to the S/4HANA system.deleteActualCostRate(ActualCostRate actualCostRate) Deletes an existingActualCostRateentity in the S/4HANA system.deletePlanCostRate(PlanCostRate planCostRate) Deletes an existingPlanCostRateentity in the S/4HANA system.deleteServiceCostRate(ServiceCostRate serviceCostRate) Deletes an existingServiceCostRateentity in the S/4HANA system.updateActualCostRate(ActualCostRate actualCostRate) Update an existingActualCostRateentity and save it to the S/4HANA system.updatePlanCostRate(PlanCostRate planCostRate) Update an existingPlanCostRateentity and save it to the S/4HANA system.updateServiceCostRate(ServiceCostRate serviceCostRate) Update an existingServiceCostRateentity 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
-
createActualCostRate
Create a newActualCostRateentity and save it to the S/4HANA system.- Parameters:
actualCostRate-ActualCostRateentity 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.
-
updateActualCostRate
Update an existingActualCostRateentity and save it to the S/4HANA system.- Parameters:
actualCostRate-ActualCostRateentity 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.
-
deleteActualCostRate
Deletes an existingActualCostRateentity in the S/4HANA system.- Parameters:
actualCostRate-ActualCostRateentity 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.
-
createPlanCostRate
Create a newPlanCostRateentity and save it to the S/4HANA system.- Parameters:
planCostRate-PlanCostRateentity 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.
-
updatePlanCostRate
Update an existingPlanCostRateentity and save it to the S/4HANA system.- Parameters:
planCostRate-PlanCostRateentity 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.
-
deletePlanCostRate
Deletes an existingPlanCostRateentity in the S/4HANA system.- Parameters:
planCostRate-PlanCostRateentity 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.
-
createServiceCostRate
@Nonnull CostRateServiceBatchChangeSet createServiceCostRate(@Nonnull ServiceCostRate serviceCostRate) Create a newServiceCostRateentity and save it to the S/4HANA system.- Parameters:
serviceCostRate-ServiceCostRateentity 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.
-
updateServiceCostRate
@Nonnull CostRateServiceBatchChangeSet updateServiceCostRate(@Nonnull ServiceCostRate serviceCostRate) Update an existingServiceCostRateentity and save it to the S/4HANA system.- Parameters:
serviceCostRate-ServiceCostRateentity 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.
-
deleteServiceCostRate
@Nonnull CostRateServiceBatchChangeSet deleteServiceCostRate(@Nonnull ServiceCostRate serviceCostRate) Deletes an existingServiceCostRateentity in the S/4HANA system.- Parameters:
serviceCostRate-ServiceCostRateentity 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.
-