Interface PurchasingSourceServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<PurchasingSourceServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<PurchasingSourceServiceBatch>
- All Known Implementing Classes:
DefaultPurchasingSourceServiceBatchChangeSet
public interface PurchasingSourceServiceBatchChangeSet
extends FluentHelperBatchChangeSet<PurchasingSourceServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<PurchasingSourceServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
PurchasingSourceService.-
Method Summary
Modifier and TypeMethodDescriptioncreatePurchasingSource(PurchasingSource purchasingSource) Create a newPurchasingSourceentity and save it to the S/4HANA system.deletePurchasingSource(PurchasingSource purchasingSource) Deletes an existingPurchasingSourceentity in the S/4HANA system.updatePurchasingSource(PurchasingSource purchasingSource) Update an existingPurchasingSourceentity 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
-
createPurchasingSource
@Nonnull PurchasingSourceServiceBatchChangeSet createPurchasingSource(@Nonnull PurchasingSource purchasingSource) Create a newPurchasingSourceentity and save it to the S/4HANA system.- Parameters:
purchasingSource-PurchasingSourceentity 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.
-
updatePurchasingSource
@Nonnull PurchasingSourceServiceBatchChangeSet updatePurchasingSource(@Nonnull PurchasingSource purchasingSource) Update an existingPurchasingSourceentity and save it to the S/4HANA system.- Parameters:
purchasingSource-PurchasingSourceentity 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.
-
deletePurchasingSource
@Nonnull PurchasingSourceServiceBatchChangeSet deletePurchasingSource(@Nonnull PurchasingSource purchasingSource) Deletes an existingPurchasingSourceentity in the S/4HANA system.- Parameters:
purchasingSource-PurchasingSourceentity 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.
-