Interface CustomerMaterialServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<CustomerMaterialServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<CustomerMaterialServiceBatch>
- All Known Implementing Classes:
DefaultCustomerMaterialServiceBatchChangeSet
public interface CustomerMaterialServiceBatchChangeSet
extends FluentHelperBatchChangeSet<CustomerMaterialServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<CustomerMaterialServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
CustomerMaterialService.-
Method Summary
Modifier and TypeMethodDescriptioncreateCustomerMaterial(CustomerMaterial customerMaterial) Create a newCustomerMaterialentity and save it to the S/4HANA system.deleteCustomerMaterial(CustomerMaterial customerMaterial) Deletes an existingCustomerMaterialentity in the S/4HANA system.updateCustomerMaterial(CustomerMaterial customerMaterial) Update an existingCustomerMaterialentity 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
-
createCustomerMaterial
@Nonnull CustomerMaterialServiceBatchChangeSet createCustomerMaterial(@Nonnull CustomerMaterial customerMaterial) Create a newCustomerMaterialentity and save it to the S/4HANA system.- Parameters:
customerMaterial-CustomerMaterialentity 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.
-
updateCustomerMaterial
@Nonnull CustomerMaterialServiceBatchChangeSet updateCustomerMaterial(@Nonnull CustomerMaterial customerMaterial) Update an existingCustomerMaterialentity and save it to the S/4HANA system.- Parameters:
customerMaterial-CustomerMaterialentity 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.
-
deleteCustomerMaterial
@Nonnull CustomerMaterialServiceBatchChangeSet deleteCustomerMaterial(@Nonnull CustomerMaterial customerMaterial) Deletes an existingCustomerMaterialentity in the S/4HANA system.- Parameters:
customerMaterial-CustomerMaterialentity 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.
-