Interface InboundDeliveryServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<InboundDeliveryServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<InboundDeliveryServiceBatch>
- All Known Implementing Classes:
DefaultInboundDeliveryServiceBatchChangeSet
public interface InboundDeliveryServiceBatchChangeSet
extends FluentHelperBatchChangeSet<InboundDeliveryServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<InboundDeliveryServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
InboundDeliveryService.-
Method Summary
Modifier and TypeMethodDescriptioncreateInbDeliveryHeader(InbDeliveryHeader inbDeliveryHeader) Create a newInbDeliveryHeaderentity and save it to the S/4HANA system.deleteInbDeliveryHeader(InbDeliveryHeader inbDeliveryHeader) Deletes an existingInbDeliveryHeaderentity in the S/4HANA system.deleteInbDeliveryItem(InbDeliveryItem inbDeliveryItem) Deletes an existingInbDeliveryItementity in the S/4HANA system.updateInbDeliveryDocFlow(InbDeliveryDocFlow inbDeliveryDocFlow) Update an existingInbDeliveryDocFlowentity and save it to the S/4HANA system.updateInbDeliveryHeader(InbDeliveryHeader inbDeliveryHeader) Update an existingInbDeliveryHeaderentity and save it to the S/4HANA system.updateInbDeliveryItem(InbDeliveryItem inbDeliveryItem) Update an existingInbDeliveryItementity 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
-
updateInbDeliveryDocFlow
@Nonnull InboundDeliveryServiceBatchChangeSet updateInbDeliveryDocFlow(@Nonnull InbDeliveryDocFlow inbDeliveryDocFlow) Update an existingInbDeliveryDocFlowentity and save it to the S/4HANA system.- Parameters:
inbDeliveryDocFlow-InbDeliveryDocFlowentity 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.
-
createInbDeliveryHeader
@Nonnull InboundDeliveryServiceBatchChangeSet createInbDeliveryHeader(@Nonnull InbDeliveryHeader inbDeliveryHeader) Create a newInbDeliveryHeaderentity and save it to the S/4HANA system.- Parameters:
inbDeliveryHeader-InbDeliveryHeaderentity 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.
-
updateInbDeliveryHeader
@Nonnull InboundDeliveryServiceBatchChangeSet updateInbDeliveryHeader(@Nonnull InbDeliveryHeader inbDeliveryHeader) Update an existingInbDeliveryHeaderentity and save it to the S/4HANA system.- Parameters:
inbDeliveryHeader-InbDeliveryHeaderentity 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.
-
deleteInbDeliveryHeader
@Nonnull InboundDeliveryServiceBatchChangeSet deleteInbDeliveryHeader(@Nonnull InbDeliveryHeader inbDeliveryHeader) Deletes an existingInbDeliveryHeaderentity in the S/4HANA system.- Parameters:
inbDeliveryHeader-InbDeliveryHeaderentity 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.
-
updateInbDeliveryItem
@Nonnull InboundDeliveryServiceBatchChangeSet updateInbDeliveryItem(@Nonnull InbDeliveryItem inbDeliveryItem) Update an existingInbDeliveryItementity and save it to the S/4HANA system.- Parameters:
inbDeliveryItem-InbDeliveryItementity 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.
-
deleteInbDeliveryItem
@Nonnull InboundDeliveryServiceBatchChangeSet deleteInbDeliveryItem(@Nonnull InbDeliveryItem inbDeliveryItem) Deletes an existingInbDeliveryItementity in the S/4HANA system.- Parameters:
inbDeliveryItem-InbDeliveryItementity 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.
-