Interface CustomerMaterialServiceBatchChangeSet

All Superinterfaces:
FluentHelperBatchChangeSet<CustomerMaterialServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<CustomerMaterialServiceBatch>
All Known Implementing Classes:
DefaultCustomerMaterialServiceBatchChangeSet

This interface enables you to combine multiple operations into one change set. For further information have a look into the CustomerMaterialService.
  • Method Details

    • createCustomerMaterial

      @Nonnull CustomerMaterialServiceBatchChangeSet createCustomerMaterial(@Nonnull CustomerMaterial customerMaterial)
      Create a new CustomerMaterial entity and save it to the S/4HANA system.
      Parameters:
      customerMaterial - CustomerMaterial entity 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 endChangeSet on the returned fluent helper object.
    • updateCustomerMaterial

      @Nonnull CustomerMaterialServiceBatchChangeSet updateCustomerMaterial(@Nonnull CustomerMaterial customerMaterial)
      Update an existing CustomerMaterial entity and save it to the S/4HANA system.
      Parameters:
      customerMaterial - CustomerMaterial entity 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 endChangeSet on the returned fluent helper object.
    • deleteCustomerMaterial

      @Nonnull CustomerMaterialServiceBatchChangeSet deleteCustomerMaterial(@Nonnull CustomerMaterial customerMaterial)
      Deletes an existing CustomerMaterial entity in the S/4HANA system.
      Parameters:
      customerMaterial - CustomerMaterial entity 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 endChangeSet on the returned fluent helper object.