Interface LegalDocumentStatusService
- All Superinterfaces:
BatchService<LegalDocumentStatusServiceBatch>
- All Known Implementing Classes:
DefaultLegalDocumentStatusService
@Deprecated
public interface LegalDocumentStatusService
extends BatchService<LegalDocumentStatusServiceBatch>
Deprecated.
The service and all its related classes are deprecated. Please use the odata generator to generate the
VDM.
This service is based on the OData protocol and helps you to read the possible values of legal document status through an API call. This describes the status of a legal document. For example, 'In Process', 'Accepted' and so on are the various statuses assigned to a legal document. This service contains legal document status and legal document status text nodes. Using this service, you can read the legal document status type maintained in the system. .
Reference: SAP Business Accelerator Hub
Details:
| OData Service: | API_LEGALDOCUMENTSTATUS |
| API Version: | 1.0.1 |
| Minimum ERP Version: | 2302 |
| Communication Scenario: | Legal Document Integration(SAP_COM_0178) |
| Scope Items: | SAP S/4HANA for Enterprise Contract Management(1XV) |
| Authentication Methods: | x509 |
| Business Object: | Legal Document Status |
-
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 TypeMethodDescriptionDeprecated.Fetch multipleLegalDocumentStatusentities.Deprecated.Fetch multipleLegalDocumentStatusTextentities.getLegalDocumentStatusByKey(String internalDocumentStatus) Deprecated.Fetch a singleLegalDocumentStatusentity using key fields.getLegalDocumentStatusTextByKey(String internalDocumentStatus, String language) Deprecated.Fetch a singleLegalDocumentStatusTextentity 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.
-
getAllLegalDocumentStatus
Deprecated.Fetch multipleLegalDocumentStatusentities.- Returns:
- A fluent helper to fetch multiple
LegalDocumentStatusentities. 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.
-
getLegalDocumentStatusByKey
@Nonnull LegalDocumentStatusByKeyFluentHelper getLegalDocumentStatusByKey(String internalDocumentStatus) Deprecated.Fetch a singleLegalDocumentStatusentity using key fields.- Parameters:
internalDocumentStatus- Document StatusConstraints: Not nullable, Maximum length: 2
- Returns:
- A fluent helper to fetch a single
LegalDocumentStatusentity 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.
-
getAllLegalDocumentStatusText
Deprecated.Fetch multipleLegalDocumentStatusTextentities.- Returns:
- A fluent helper to fetch multiple
LegalDocumentStatusTextentities. 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.
-
getLegalDocumentStatusTextByKey
@Nonnull LegalDocumentStatusTextByKeyFluentHelper getLegalDocumentStatusTextByKey(String internalDocumentStatus, String language) Deprecated.Fetch a singleLegalDocumentStatusTextentity using key fields.- Parameters:
internalDocumentStatus- Document StatusConstraints: Not nullable, Maximum length: 2
language- Language KeyConstraints: Not nullable, Maximum length: 2
- Returns:
- A fluent helper to fetch a single
LegalDocumentStatusTextentity 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.
-