Interface FundServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<FundServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<FundServiceBatch>
- All Known Implementing Classes:
DefaultFundServiceBatchChangeSet
public interface FundServiceBatchChangeSet
extends FluentHelperBatchChangeSet<FundServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<FundServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
FundService.-
Method Summary
Modifier and TypeMethodDescriptioncreateFundCore(FundCore fundCore) Create a newFundCoreentity and save it to the S/4HANA system.deleteFundCore(FundCore fundCore) Deletes an existingFundCoreentity in the S/4HANA system.updateFundCore(FundCore fundCore) Update an existingFundCoreentity and save it to the S/4HANA system.updateFundText(FundText fundText) Update an existingFundTextentity 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
-
createFundCore
Create a newFundCoreentity and save it to the S/4HANA system.- Parameters:
fundCore-FundCoreentity 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.
-
updateFundCore
Update an existingFundCoreentity and save it to the S/4HANA system.- Parameters:
fundCore-FundCoreentity 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.
-
deleteFundCore
Deletes an existingFundCoreentity in the S/4HANA system.- Parameters:
fundCore-FundCoreentity 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.
-
updateFundText
Update an existingFundTextentity and save it to the S/4HANA system.- Parameters:
fundText-FundTextentity 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.
-