Interface WarehouseTaskServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<WarehouseTaskServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<WarehouseTaskServiceBatch>
- All Known Implementing Classes:
DefaultWarehouseTaskServiceBatchChangeSet
public interface WarehouseTaskServiceBatchChangeSet
extends FluentHelperBatchChangeSet<WarehouseTaskServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<WarehouseTaskServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
WarehouseTaskService.-
Method Summary
Modifier and TypeMethodDescriptioncreateWarehouseOrder(WarehouseOrder warehouseOrder) Create a newWarehouseOrderentity and save it to the S/4HANA system.createWarehouseTask(WarehouseTask warehouseTask) Create a newWarehouseTaskentity 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
-
createWarehouseOrder
@Nonnull WarehouseTaskServiceBatchChangeSet createWarehouseOrder(@Nonnull WarehouseOrder warehouseOrder) Create a newWarehouseOrderentity and save it to the S/4HANA system.- Parameters:
warehouseOrder-WarehouseOrderentity 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.
-
createWarehouseTask
@Nonnull WarehouseTaskServiceBatchChangeSet createWarehouseTask(@Nonnull WarehouseTask warehouseTask) Create a newWarehouseTaskentity and save it to the S/4HANA system.- Parameters:
warehouseTask-WarehouseTaskentity 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.
-