All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.cloud.sdk.s4hana.datamodel.odata.services.MasterInspectionCharacteristicService Maven / Gradle / Ivy

/*
 * Copyright (c) 2019 SAP SE or an SAP affiliate company. All rights reserved.
 */

package com.sap.cloud.sdk.s4hana.datamodel.odata.services;

import javax.annotation.Nonnull;

import com.sap.cloud.sdk.s4hana.datamodel.odata.helper.batch.BatchService;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecificationByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecificationFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.batch.MasterInspectionCharacteristicServiceBatch;

/**
 * 

* This service enables you to read master inspection characteristics from the SAP S/4HANA Cloud system. A master * inspection characteristic is a master data record that describes the quality inspection criteria for materials. *

*

* Business * Documentation *

*

* Reference: SAP * API Business Hub *

*

Details:

* * * * * * * * * * * * * * * * * * * * * * * * * *
OData Service:API_MASTERINSPCHARACTERISTIC_SRV
API Version:1
Communication Scenario:Inspection Master Data Integration (SAP_COM_0110)
Scope Items:Quality Management in Discrete Manufacturing (1E1), * Quality Management in Procurement (1FM), * Quality Management in Sales (1MP), * Quality Management in Stock Handling (1MR), * Nonconformance Management (2QN)
Authentication Methods:Basic, x509, OAuth2
Business Object:InspectionSpecification
* */ public interface MasterInspectionCharacteristicService extends BatchService { /** * If no other path was provided via the {@link #withServicePath(String)} method, this is the default service path * used to access the endpoint. * */ String DEFAULT_SERVICE_PATH = "/sap/opu/odata/sap/API_MASTERINSPCHARACTERISTIC_SRV"; /** * Overrides the default service path and returns a new service instance with the specified service path. Also * adjusts the respective entity URLs. * * @param servicePath * Service path that will override the default. * @return A new service instance with the specified service path. */ @Nonnull MasterInspectionCharacteristicService withServicePath( @Nonnull final String servicePath ); /** * Fetch multiple * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecification * InspectionSpecification} entities. * * @return A fluent helper to fetch multiple * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecification * InspectionSpecification} entities. This fluent helper allows methods which modify the underlying query to * be called before executing the query itself. To perform execution, call the * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecificationFluentHelper#execute * execute} method on the fluent helper object. */ @Nonnull InspectionSpecificationFluentHelper getAllInspectionSpecification(); /** * Fetch a single * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecification * InspectionSpecification} entity using key fields. * * @param inspectionSpecificationPlant * Plant for the Master Inspection Characteristic *

* Constraints: Not nullable, Maximum length: 4 *

* @param inspectionSpecification * Name that uniquely identifies a master inspection characteristic within a plant. *

* Constraints: Not nullable, Maximum length: 8 *

* @param inspectionSpecificationVersion * Version Number of the Master Inspection Characteristic *

* Constraints: Not nullable, Maximum length: 6 *

* @return A fluent helper to fetch a single * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecification * InspectionSpecification} entity 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 the * {@link com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.masterinspectioncharacteristic.InspectionSpecificationByKeyFluentHelper#execute * execute} method on the fluent helper object. */ @Nonnull InspectionSpecificationByKeyFluentHelper getInspectionSpecificationByKey( final String inspectionSpecification, final String inspectionSpecificationVersion, final String inspectionSpecificationPlant ); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy