Interface KanbanControlCycleV2ServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<KanbanControlCycleV2ServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<KanbanControlCycleV2ServiceBatch>
- All Known Implementing Classes:
DefaultKanbanControlCycleV2ServiceBatchChangeSet
public interface KanbanControlCycleV2ServiceBatchChangeSet
extends FluentHelperBatchChangeSet<KanbanControlCycleV2ServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<KanbanControlCycleV2ServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
KanbanControlCycleV2Service.-
Method Summary
Modifier and TypeMethodDescriptioncreateKanbanControlCycle(KanbanControlCycle kanbanControlCycle) Create a newKanbanControlCycleentity and save it to the S/4HANA system.deleteKanbanControlCycle(KanbanControlCycle kanbanControlCycle) Deletes an existingKanbanControlCycleentity in the S/4HANA system.updateKanbanControlCycle(KanbanControlCycle kanbanControlCycle) Update an existingKanbanControlCycleentity 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
-
createKanbanControlCycle
@Nonnull KanbanControlCycleV2ServiceBatchChangeSet createKanbanControlCycle(@Nonnull KanbanControlCycle kanbanControlCycle) Create a newKanbanControlCycleentity and save it to the S/4HANA system.- Parameters:
kanbanControlCycle-KanbanControlCycleentity 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.
-
updateKanbanControlCycle
@Nonnull KanbanControlCycleV2ServiceBatchChangeSet updateKanbanControlCycle(@Nonnull KanbanControlCycle kanbanControlCycle) Update an existingKanbanControlCycleentity and save it to the S/4HANA system.- Parameters:
kanbanControlCycle-KanbanControlCycleentity 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.
-
deleteKanbanControlCycle
@Nonnull KanbanControlCycleV2ServiceBatchChangeSet deleteKanbanControlCycle(@Nonnull KanbanControlCycle kanbanControlCycle) Deletes an existingKanbanControlCycleentity in the S/4HANA system.- Parameters:
kanbanControlCycle-KanbanControlCycleentity 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.
-