Interface ProductionVolumeCaptureService
- All Superinterfaces:
BatchService<ProductionVolumeCaptureServiceBatch>
- All Known Implementing Classes:
DefaultProductionVolumeCaptureService
@Deprecated
public interface ProductionVolumeCaptureService
extends BatchService<ProductionVolumeCaptureServiceBatch>
Deprecated.
The service and all its related classes are deprecated. Please use the odata generator to generate the
VDM.
You can use the service to read and create production volumes for wells or combination of well and well completions. The service is based on the OData protocol and can be consumed by external systems.
Reference: SAP Business Accelerator Hub
Details:
| OData Service: | API_PRODVOLCAPTURE |
| API Version: | 1.0.0 |
| Minimum ERP Version: | 2302 |
| Communication Scenario: | Production Volume Management Integration(SAP_COM_0704) |
| Scope Items: | Production Volume Capture(4AG) |
| Authentication Methods: | x509 |
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDeprecated.If no other path was provided via thewithServicePath(String)method, this is the default service path used to access the endpoint. -
Method Summary
Modifier and TypeMethodDescriptioncreateProductionVolume(ProductionVolume productionVolume) Deprecated.Create a newProductionVolumeentity and save it to the S/4HANA system.Deprecated.Fetch multipleProductionVolumeentities.getProductionVolumeByKey(String well, String wellCompletion, LocalDateTime productionDate, ZonedDateTime oilAllocAtWellCompltnDateTime) Deprecated.Fetch a singleProductionVolumeentity using key fields.withServicePath(String servicePath) Deprecated.Overrides the default service path and returns a new service instance with the specified service path.Methods inherited from interface com.sap.cloud.sdk.datamodel.odata.helper.batch.BatchService
batch
-
Field Details
-
DEFAULT_SERVICE_PATH
Deprecated.If no other path was provided via thewithServicePath(String)method, this is the default service path used to access the endpoint.- See Also:
-
-
Method Details
-
withServicePath
Deprecated.Overrides the default service path and returns a new service instance with the specified service path. Also adjusts the respective entity URLs.- Parameters:
servicePath- Service path that will override the default.- Returns:
- A new service instance with the specified service path.
-
getAllProductionVolume
Deprecated.Fetch multipleProductionVolumeentities.- Returns:
- A fluent helper to fetch multiple
ProductionVolumeentities. This fluent helper allows methods which modify the underlying query to be called before executing the query itself. To perform execution, call theexecutemethod on the fluent helper object.
-
getProductionVolumeByKey
@Nonnull ProductionVolumeByKeyFluentHelper getProductionVolumeByKey(String well, String wellCompletion, LocalDateTime productionDate, ZonedDateTime oilAllocAtWellCompltnDateTime) Deprecated.Fetch a singleProductionVolumeentity using key fields.- Parameters:
productionDate- Production DateConstraints: Not nullable, Precision: 0
well- Well IDConstraints: Not nullable, Maximum length: 30
wellCompletion- Well Completion IDConstraints: Not nullable, Maximum length: 30
oilAllocAtWellCompltnDateTime- UTC Time Stamp in Short Form (YYYYMMDDhhmmss)Constraints: Not nullable, Precision: 0
- Returns:
- A fluent helper to fetch a single
ProductionVolumeentity using key fields. This fluent helper allows methods which modify the underlying query to be called before executing the query itself. To perform execution, call theexecutemethod on the fluent helper object.
-
createProductionVolume
@Nonnull ProductionVolumeCreateFluentHelper createProductionVolume(@Nonnull ProductionVolume productionVolume) Deprecated.Create a newProductionVolumeentity and save it to the S/4HANA system.- Parameters:
productionVolume-ProductionVolumeentity object that will be created in the S/4HANA system.- Returns:
- A fluent helper to create a new
ProductionVolumeentity. To perform execution, call theexecutemethod on the fluent helper object.
-