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

com.sap.cloud.sdk.s4hana.datamodel.odata.services.DefaultSalesDistrictService 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 javax.inject.Named;

import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.salesdistrict.SalesDistrictByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.salesdistrict.SalesDistrictFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.salesdistrict.SalesDistrictTextByKeyFluentHelper;
import com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.salesdistrict.SalesDistrictTextFluentHelper;

/**
 * 

* This service enables you to display sales district master data to be consumed in SAP Fiori apps and on other user * interfaces. *

*

* Business * Documentation *

*

* Reference: SAP API * Business Hub *

*

Details:

* * * * * * * * * * * * * * * * * * * * * *
OData Service:API_SALESDISTRICT_SRV
API Version:1
Communication Scenario:SAP Analytics Cloud for Planning Integration (SAP_COM_0087)
Scope Items:Integration between SAP S/4HANA Cloud and SAP Analytics Cloud * (1YB)
Authentication Methods:Basic, x509
* */ @Named( "com.sap.cloud.sdk.s4hana.datamodel.odata.services.DefaultSalesDistrictService" ) public class DefaultSalesDistrictService implements SalesDistrictService { @Nonnull private final String servicePath; /** * Creates a service using {@link SalesDistrictService#DEFAULT_SERVICE_PATH} to send the requests. * */ public DefaultSalesDistrictService() { servicePath = SalesDistrictService.DEFAULT_SERVICE_PATH; } /** * Creates a service using the provided service path to send the requests. *

* Used by the fluent {@link #withServicePath(String)} method. * */ private DefaultSalesDistrictService( @Nonnull final String servicePath ) { this.servicePath = servicePath; } @Override @Nonnull public DefaultSalesDistrictService withServicePath( @Nonnull final String servicePath ) { return new DefaultSalesDistrictService(servicePath); } @Override @Nonnull public SalesDistrictFluentHelper getAllSalesDistrict() { return new SalesDistrictFluentHelper(servicePath); } @Override @Nonnull public SalesDistrictByKeyFluentHelper getSalesDistrictByKey( final String salesDistrict ) { return new SalesDistrictByKeyFluentHelper(servicePath, salesDistrict); } @Override @Nonnull public SalesDistrictTextFluentHelper getAllSalesDistrictText() { return new SalesDistrictTextFluentHelper(servicePath); } @Override @Nonnull public SalesDistrictTextByKeyFluentHelper getSalesDistrictTextByKey( final String salesDistrict, final String language ) { return new SalesDistrictTextByKeyFluentHelper(servicePath, salesDistrict, language); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy