Interface EHSIncidentCreateServiceBatchChangeSet
- All Superinterfaces:
FluentHelperBatchChangeSet<EHSIncidentCreateServiceBatchChangeSet>,FluentHelperBatchEndChangeSet<EHSIncidentCreateServiceBatch>
- All Known Implementing Classes:
DefaultEHSIncidentCreateServiceBatchChangeSet
public interface EHSIncidentCreateServiceBatchChangeSet
extends FluentHelperBatchChangeSet<EHSIncidentCreateServiceBatchChangeSet>, FluentHelperBatchEndChangeSet<EHSIncidentCreateServiceBatch>
This interface enables you to combine multiple operations into one change set. For further information have a look
into the
EHSIncidentCreateService.-
Method Summary
Modifier and TypeMethodDescriptioncreateAttachment(Attachment attachment) Create a newAttachmententity and save it to the S/4HANA system.createIncident(Incident incident) Create a newIncidententity and save it to the S/4HANA system.createPerson(Person person) Create a newPersonentity 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
-
createAttachment
Create a newAttachmententity and save it to the S/4HANA system.- Parameters:
attachment-Attachmententity 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.
-
createIncident
Create a newIncidententity and save it to the S/4HANA system.- Parameters:
incident-Incidententity 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.
-
createPerson
Create a newPersonentity and save it to the S/4HANA system.- Parameters:
person-Personentity 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.
-