Interface PaymentAdviceServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<PaymentAdviceServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<PaymentAdviceServiceBatch>
- All Known Implementing Classes:
DefaultPaymentAdviceServiceBatchChangeSet
public interface PaymentAdviceServiceBatchChangeSet
extends FluentHelperBatchChangeSet<PaymentAdviceServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<PaymentAdviceServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
PaymentAdviceService.-
Method Summary
Modifier and TypeMethodDescriptioncreatePaymentAdvice(PaymentAdvice paymentAdvice) Create a newPaymentAdviceentity and save it to the S/4HANA system.createPaymentAdviceItem(PaymentAdviceItem paymentAdviceItem) Create a newPaymentAdviceItementity and save it to the S/4HANA system.deletePaymentAdvice(PaymentAdvice paymentAdvice) Deletes an existingPaymentAdviceentity in the S/4HANA system.deletePaymentAdviceItem(PaymentAdviceItem paymentAdviceItem) Deletes an existingPaymentAdviceItementity in the S/4HANA system.updatePaymentAdvice(PaymentAdvice paymentAdvice) Update an existingPaymentAdviceentity and save it to the S/4HANA system.updatePaymentAdviceItem(PaymentAdviceItem paymentAdviceItem) Update an existingPaymentAdviceItementity 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
-
createPaymentAdvice
@Nonnull PaymentAdviceServiceBatchChangeSet createPaymentAdvice(@Nonnull PaymentAdvice paymentAdvice) Create a newPaymentAdviceentity and save it to the S/4HANA system.- Parameters:
paymentAdvice-PaymentAdviceentity 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.
-
updatePaymentAdvice
@Nonnull PaymentAdviceServiceBatchChangeSet updatePaymentAdvice(@Nonnull PaymentAdvice paymentAdvice) Update an existingPaymentAdviceentity and save it to the S/4HANA system.- Parameters:
paymentAdvice-PaymentAdviceentity 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.
-
deletePaymentAdvice
@Nonnull PaymentAdviceServiceBatchChangeSet deletePaymentAdvice(@Nonnull PaymentAdvice paymentAdvice) Deletes an existingPaymentAdviceentity in the S/4HANA system.- Parameters:
paymentAdvice-PaymentAdviceentity 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.
-
createPaymentAdviceItem
@Nonnull PaymentAdviceServiceBatchChangeSet createPaymentAdviceItem(@Nonnull PaymentAdviceItem paymentAdviceItem) Create a newPaymentAdviceItementity and save it to the S/4HANA system.- Parameters:
paymentAdviceItem-PaymentAdviceItementity 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.
-
updatePaymentAdviceItem
@Nonnull PaymentAdviceServiceBatchChangeSet updatePaymentAdviceItem(@Nonnull PaymentAdviceItem paymentAdviceItem) Update an existingPaymentAdviceItementity and save it to the S/4HANA system.- Parameters:
paymentAdviceItem-PaymentAdviceItementity 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.
-
deletePaymentAdviceItem
@Nonnull PaymentAdviceServiceBatchChangeSet deletePaymentAdviceItem(@Nonnull PaymentAdviceItem paymentAdviceItem) Deletes an existingPaymentAdviceItementity in the S/4HANA system.- Parameters:
paymentAdviceItem-PaymentAdviceItementity 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.
-