Interface BillOfMaterialsServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<BillOfMaterialsServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<BillOfMaterialsServiceBatch>
- All Known Implementing Classes:
DefaultBillOfMaterialsServiceBatchChangeSet
public interface BillOfMaterialsServiceBatchChangeSet
extends FluentHelperBatchChangeSet<BillOfMaterialsServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<BillOfMaterialsServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
BillOfMaterialsService.-
Method Summary
Modifier and TypeMethodDescriptioncreateBillOfMaterial(BillOfMaterial billOfMaterial) Create a newBillOfMaterialentity and save it to the S/4HANA system.createBillOfMaterialItem(BillOfMaterialItem billOfMaterialItem) Create a newBillOfMaterialItementity and save it to the S/4HANA system.updateBillOfMaterial(BillOfMaterial billOfMaterial) Update an existingBillOfMaterialentity and save it to the S/4HANA system.updateBillOfMaterialItem(BillOfMaterialItem billOfMaterialItem) Update an existingBillOfMaterialItementity 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
-
createBillOfMaterial
@Nonnull BillOfMaterialsServiceBatchChangeSet createBillOfMaterial(@Nonnull BillOfMaterial billOfMaterial) Create a newBillOfMaterialentity and save it to the S/4HANA system.- Parameters:
billOfMaterial-BillOfMaterialentity 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.
-
updateBillOfMaterial
@Nonnull BillOfMaterialsServiceBatchChangeSet updateBillOfMaterial(@Nonnull BillOfMaterial billOfMaterial) Update an existingBillOfMaterialentity and save it to the S/4HANA system.- Parameters:
billOfMaterial-BillOfMaterialentity 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.
-
createBillOfMaterialItem
@Nonnull BillOfMaterialsServiceBatchChangeSet createBillOfMaterialItem(@Nonnull BillOfMaterialItem billOfMaterialItem) Create a newBillOfMaterialItementity and save it to the S/4HANA system.- Parameters:
billOfMaterialItem-BillOfMaterialItementity 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.
-
updateBillOfMaterialItem
@Nonnull BillOfMaterialsServiceBatchChangeSet updateBillOfMaterialItem(@Nonnull BillOfMaterialItem billOfMaterialItem) Update an existingBillOfMaterialItementity and save it to the S/4HANA system.- Parameters:
billOfMaterialItem-BillOfMaterialItementity 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.
-