Interface WarehouseResourceServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<WarehouseResourceServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<WarehouseResourceServiceBatch>
- All Known Implementing Classes:
DefaultWarehouseResourceServiceBatchChangeSet
public interface WarehouseResourceServiceBatchChangeSet
extends FluentHelperBatchChangeSet<WarehouseResourceServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<WarehouseResourceServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
WarehouseResourceService.-
Method Summary
Modifier and TypeMethodDescriptioncreateWarehouseResource(WarehouseResource warehouseResource) Create a newWarehouseResourceentity and save it to the S/4HANA system.deleteWarehouseResource(WarehouseResource warehouseResource) Deletes an existingWarehouseResourceentity in 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
-
createWarehouseResource
@Nonnull WarehouseResourceServiceBatchChangeSet createWarehouseResource(@Nonnull WarehouseResource warehouseResource) Create a newWarehouseResourceentity and save it to the S/4HANA system.- Parameters:
warehouseResource-WarehouseResourceentity 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.
-
deleteWarehouseResource
@Nonnull WarehouseResourceServiceBatchChangeSet deleteWarehouseResource(@Nonnull WarehouseResource warehouseResource) Deletes an existingWarehouseResourceentity in the S/4HANA system.- Parameters:
warehouseResource-WarehouseResourceentity 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.
-