Interface ProcessOrderServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<ProcessOrderServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<ProcessOrderServiceBatch>
- All Known Implementing Classes:
DefaultProcessOrderServiceBatchChangeSet
public interface ProcessOrderServiceBatchChangeSet
extends FluentHelperBatchChangeSet<ProcessOrderServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<ProcessOrderServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
ProcessOrderService.-
Method Summary
Modifier and TypeMethodDescriptioncreateFunctionMessage(FunctionMessage functionMessage) Create a newFunctionMessageentity and save it to the S/4HANA system.createProcessOrder(ProcessOrder processOrder) Create a newProcessOrderentity and save it to the S/4HANA system.deleteFunctionMessage(FunctionMessage functionMessage) Deletes an existingFunctionMessageentity in the S/4HANA system.updateFunctionMessage(FunctionMessage functionMessage) Update an existingFunctionMessageentity and save it to the S/4HANA system.updateProcessOrder(ProcessOrder processOrder) Update an existingProcessOrderentity 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
-
createFunctionMessage
@Nonnull ProcessOrderServiceBatchChangeSet createFunctionMessage(@Nonnull FunctionMessage functionMessage) Create a newFunctionMessageentity and save it to the S/4HANA system.- Parameters:
functionMessage-FunctionMessageentity 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.
-
updateFunctionMessage
@Nonnull ProcessOrderServiceBatchChangeSet updateFunctionMessage(@Nonnull FunctionMessage functionMessage) Update an existingFunctionMessageentity and save it to the S/4HANA system.- Parameters:
functionMessage-FunctionMessageentity 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.
-
deleteFunctionMessage
@Nonnull ProcessOrderServiceBatchChangeSet deleteFunctionMessage(@Nonnull FunctionMessage functionMessage) Deletes an existingFunctionMessageentity in the S/4HANA system.- Parameters:
functionMessage-FunctionMessageentity 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.
-
createProcessOrder
Create a newProcessOrderentity and save it to the S/4HANA system.- Parameters:
processOrder-ProcessOrderentity 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.
-
updateProcessOrder
Update an existingProcessOrderentity and save it to the S/4HANA system.- Parameters:
processOrder-ProcessOrderentity 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.
-