Interface OrderBillOfMaterialServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<OrderBillOfMaterialServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<OrderBillOfMaterialServiceBatch>
- All Known Implementing Classes:
DefaultOrderBillOfMaterialServiceBatchChangeSet
public interface OrderBillOfMaterialServiceBatchChangeSet
extends FluentHelperBatchChangeSet<OrderBillOfMaterialServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<OrderBillOfMaterialServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
OrderBillOfMaterialService.-
Method Summary
Modifier and TypeMethodDescriptioncreateSalesOrderBOM(SalesOrderBOM salesOrderBOM) Create a newSalesOrderBOMentity and save it to the S/4HANA system.createSalesOrderBOMItem(SalesOrderBOMItem salesOrderBOMItem) Create a newSalesOrderBOMItementity and save it to the S/4HANA system.deleteSalesOrderBOM(SalesOrderBOM salesOrderBOM) Deletes an existingSalesOrderBOMentity in the S/4HANA system.deleteSalesOrderBOMItem(SalesOrderBOMItem salesOrderBOMItem) Deletes an existingSalesOrderBOMItementity in the S/4HANA system.updateSalesOrderBOM(SalesOrderBOM salesOrderBOM) Update an existingSalesOrderBOMentity and save it to the S/4HANA system.updateSalesOrderBOMItem(SalesOrderBOMItem salesOrderBOMItem) Update an existingSalesOrderBOMItementity 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
-
createSalesOrderBOMItem
@Nonnull OrderBillOfMaterialServiceBatchChangeSet createSalesOrderBOMItem(@Nonnull SalesOrderBOMItem salesOrderBOMItem) Create a newSalesOrderBOMItementity and save it to the S/4HANA system.- Parameters:
salesOrderBOMItem-SalesOrderBOMItementity 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.
-
updateSalesOrderBOMItem
@Nonnull OrderBillOfMaterialServiceBatchChangeSet updateSalesOrderBOMItem(@Nonnull SalesOrderBOMItem salesOrderBOMItem) Update an existingSalesOrderBOMItementity and save it to the S/4HANA system.- Parameters:
salesOrderBOMItem-SalesOrderBOMItementity 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.
-
deleteSalesOrderBOMItem
@Nonnull OrderBillOfMaterialServiceBatchChangeSet deleteSalesOrderBOMItem(@Nonnull SalesOrderBOMItem salesOrderBOMItem) Deletes an existingSalesOrderBOMItementity in the S/4HANA system.- Parameters:
salesOrderBOMItem-SalesOrderBOMItementity 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.
-
createSalesOrderBOM
@Nonnull OrderBillOfMaterialServiceBatchChangeSet createSalesOrderBOM(@Nonnull SalesOrderBOM salesOrderBOM) Create a newSalesOrderBOMentity and save it to the S/4HANA system.- Parameters:
salesOrderBOM-SalesOrderBOMentity 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.
-
updateSalesOrderBOM
@Nonnull OrderBillOfMaterialServiceBatchChangeSet updateSalesOrderBOM(@Nonnull SalesOrderBOM salesOrderBOM) Update an existingSalesOrderBOMentity and save it to the S/4HANA system.- Parameters:
salesOrderBOM-SalesOrderBOMentity 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.
-
deleteSalesOrderBOM
@Nonnull OrderBillOfMaterialServiceBatchChangeSet deleteSalesOrderBOM(@Nonnull SalesOrderBOM salesOrderBOM) Deletes an existingSalesOrderBOMentity in the S/4HANA system.- Parameters:
salesOrderBOM-SalesOrderBOMentity 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.
-