Interface DefectProcessingServiceBatchChangeSet

All Superinterfaces:
FluentHelperBatchChangeSet<DefectProcessingServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<DefectProcessingServiceBatch>
All Known Implementing Classes:
DefaultDefectProcessingServiceBatchChangeSet

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

    • createDefect

      @Nonnull DefectProcessingServiceBatchChangeSet createDefect(@Nonnull Defect defect)
      Create a new Defect entity and save it to the S/4HANA system.
      Parameters:
      defect - Defect 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.
    • updateDefect

      @Nonnull DefectProcessingServiceBatchChangeSet updateDefect(@Nonnull Defect defect)
      Update an existing Defect entity and save it to the S/4HANA system.
      Parameters:
      defect - Defect 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.
    • deleteDefect

      @Nonnull DefectProcessingServiceBatchChangeSet deleteDefect(@Nonnull Defect defect)
      Deletes an existing Defect entity in the S/4HANA system.
      Parameters:
      defect - Defect 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.