Interface ReservationDocumentServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<ReservationDocumentServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<ReservationDocumentServiceBatch>
- All Known Implementing Classes:
DefaultReservationDocumentServiceBatchChangeSet
public interface ReservationDocumentServiceBatchChangeSet
extends FluentHelperBatchChangeSet<ReservationDocumentServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<ReservationDocumentServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
ReservationDocumentService.-
Method Summary
Modifier and TypeMethodDescriptioncreateReservationDocumentHeader(ReservationDocumentHeader reservationDocumentHeader) Create a newReservationDocumentHeaderentity and save it to the S/4HANA system.deleteReservationDocumentHeader(ReservationDocumentHeader reservationDocumentHeader) Deletes an existingReservationDocumentHeaderentity in 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
-
createReservationDocumentHeader
@Nonnull ReservationDocumentServiceBatchChangeSet createReservationDocumentHeader(@Nonnull ReservationDocumentHeader reservationDocumentHeader) Create a newReservationDocumentHeaderentity and save it to the S/4HANA system.- Parameters:
reservationDocumentHeader-ReservationDocumentHeaderentity 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.
-
deleteReservationDocumentHeader
@Nonnull ReservationDocumentServiceBatchChangeSet deleteReservationDocumentHeader(@Nonnull ReservationDocumentHeader reservationDocumentHeader) Deletes an existingReservationDocumentHeaderentity in the S/4HANA system.- Parameters:
reservationDocumentHeader-ReservationDocumentHeaderentity 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.
-