Interface SupplierQuotationServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<SupplierQuotationServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<SupplierQuotationServiceBatch>
- All Known Implementing Classes:
DefaultSupplierQuotationServiceBatchChangeSet
public interface SupplierQuotationServiceBatchChangeSet
extends FluentHelperBatchChangeSet<SupplierQuotationServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<SupplierQuotationServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
SupplierQuotationService.-
Method Summary
Modifier and TypeMethodDescriptioncreateSupplierQuotation(SupplierQuotation supplierQuotation) Create a newSupplierQuotationentity and save it to the S/4HANA system.deleteSupplierQuotation(SupplierQuotation supplierQuotation) Deletes an existingSupplierQuotationentity in the S/4HANA system.updateSupplierQuotation(SupplierQuotation supplierQuotation) Update an existingSupplierQuotationentity and save it to the S/4HANA system.updateSupplierQuotationItem(SupplierQuotationItem supplierQuotationItem) Update an existingSupplierQuotationItementity 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
-
createSupplierQuotation
@Nonnull SupplierQuotationServiceBatchChangeSet createSupplierQuotation(@Nonnull SupplierQuotation supplierQuotation) Create a newSupplierQuotationentity and save it to the S/4HANA system.- Parameters:
supplierQuotation-SupplierQuotationentity 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.
-
updateSupplierQuotation
@Nonnull SupplierQuotationServiceBatchChangeSet updateSupplierQuotation(@Nonnull SupplierQuotation supplierQuotation) Update an existingSupplierQuotationentity and save it to the S/4HANA system.- Parameters:
supplierQuotation-SupplierQuotationentity 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.
-
deleteSupplierQuotation
@Nonnull SupplierQuotationServiceBatchChangeSet deleteSupplierQuotation(@Nonnull SupplierQuotation supplierQuotation) Deletes an existingSupplierQuotationentity in the S/4HANA system.- Parameters:
supplierQuotation-SupplierQuotationentity 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.
-
updateSupplierQuotationItem
@Nonnull SupplierQuotationServiceBatchChangeSet updateSupplierQuotationItem(@Nonnull SupplierQuotationItem supplierQuotationItem) Update an existingSupplierQuotationItementity and save it to the S/4HANA system.- Parameters:
supplierQuotationItem-SupplierQuotationItementity 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.
-