Interface PlannedOrderServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<PlannedOrderServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<PlannedOrderServiceBatch>
- All Known Implementing Classes:
DefaultPlannedOrderServiceBatchChangeSet
public interface PlannedOrderServiceBatchChangeSet
extends FluentHelperBatchChangeSet<PlannedOrderServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<PlannedOrderServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
PlannedOrderService.-
Method Summary
Modifier and TypeMethodDescriptioncreatePlannedOrder(PlannedOrder plannedOrder) Create a newPlannedOrderentity and save it to the S/4HANA system.createPlannedOrderComponent(PlannedOrderComponent plannedOrderComponent) Create a newPlannedOrderComponententity and save it to the S/4HANA system.deletePlannedOrder(PlannedOrder plannedOrder) Deletes an existingPlannedOrderentity in the S/4HANA system.deletePlannedOrderComponent(PlannedOrderComponent plannedOrderComponent) Deletes an existingPlannedOrderComponententity in the S/4HANA system.updatePlannedOrder(PlannedOrder plannedOrder) Update an existingPlannedOrderentity and save it to the S/4HANA system.updatePlannedOrderComponent(PlannedOrderComponent plannedOrderComponent) Update an existingPlannedOrderComponententity 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
-
createPlannedOrder
Create a newPlannedOrderentity and save it to the S/4HANA system.- Parameters:
plannedOrder-PlannedOrderentity 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.
-
updatePlannedOrder
Update an existingPlannedOrderentity and save it to the S/4HANA system.- Parameters:
plannedOrder-PlannedOrderentity 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.
-
deletePlannedOrder
Deletes an existingPlannedOrderentity in the S/4HANA system.- Parameters:
plannedOrder-PlannedOrderentity 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.
-
createPlannedOrderComponent
@Nonnull PlannedOrderServiceBatchChangeSet createPlannedOrderComponent(@Nonnull PlannedOrderComponent plannedOrderComponent) Create a newPlannedOrderComponententity and save it to the S/4HANA system.- Parameters:
plannedOrderComponent-PlannedOrderComponententity 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.
-
updatePlannedOrderComponent
@Nonnull PlannedOrderServiceBatchChangeSet updatePlannedOrderComponent(@Nonnull PlannedOrderComponent plannedOrderComponent) Update an existingPlannedOrderComponententity and save it to the S/4HANA system.- Parameters:
plannedOrderComponent-PlannedOrderComponententity 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.
-
deletePlannedOrderComponent
@Nonnull PlannedOrderServiceBatchChangeSet deletePlannedOrderComponent(@Nonnull PlannedOrderComponent plannedOrderComponent) Deletes an existingPlannedOrderComponententity in the S/4HANA system.- Parameters:
plannedOrderComponent-PlannedOrderComponententity 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.
-