Interface DefectProcessingServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<DefectProcessingServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<DefectProcessingServiceBatch>
- All Known Implementing Classes:
DefaultDefectProcessingServiceBatchChangeSet
public interface DefectProcessingServiceBatchChangeSet
extends FluentHelperBatchChangeSet<DefectProcessingServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<DefectProcessingServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
DefectProcessingService.-
Method Summary
Modifier and TypeMethodDescriptioncreateDefect(Defect defect) Create a newDefectentity and save it to the S/4HANA system.deleteDefect(Defect defect) Deletes an existingDefectentity in the S/4HANA system.updateDefect(Defect defect) Update an existingDefectentity 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
-
createDefect
Create a newDefectentity and save it to the S/4HANA system.- Parameters:
defect-Defectentity 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.
-
updateDefect
Update an existingDefectentity and save it to the S/4HANA system.- Parameters:
defect-Defectentity 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.
-
deleteDefect
Deletes an existingDefectentity in the S/4HANA system.- Parameters:
defect-Defectentity 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.
-