public interface PurchasingSourceService
This services enables a remote system to read, create and update purchasing sources from / in the SAP S/4HANA tenant.
Reference: SAP API Business Hub
OData Service: | API_PURCHASING_SOURCE_SRV |
API Version: | 1 |
Communication Scenario: | Purchasing Source Integration (SAP_COM_0162) |
Scope Items: | Purchase Contract (BMD) |
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_SERVICE_PATH
If no other path was provided via the
withServicePath(String) method, this is the default service path
used to access the endpoint. |
Modifier and Type | Method and Description |
---|---|
PurchasingSourceCreateFluentHelper |
createPurchasingSource(PurchasingSource purchasingSource)
Create a new
PurchasingSource entity and save it to the S/4HANA system. |
PurchasingSourceDeleteFluentHelper |
deletePurchasingSource(PurchasingSource purchasingSource)
Deletes an existing
PurchasingSource entity in the S/4HANA system. |
PurchasingSourceFluentHelper |
getAllPurchasingSource()
Fetch multiple
PurchasingSource entities. |
PurchasingSourceByKeyFluentHelper |
getPurchasingSourceByKey(String material,
String plant,
String sourceListRecord)
Fetch a single
PurchasingSource entity using key fields. |
PurchasingSourceUpdateFluentHelper |
updatePurchasingSource(PurchasingSource purchasingSource)
Update an existing
PurchasingSource entity and save it to the S/4HANA system. |
PurchasingSourceService |
withServicePath(String servicePath)
Overrides the default service path and returns a new service instance with the specified service path.
|
static final String DEFAULT_SERVICE_PATH
withServicePath(String)
method, this is the default service path
used to access the endpoint.@Nonnull PurchasingSourceService withServicePath(@Nonnull String servicePath)
servicePath
- Service path that will override the default.@Nonnull PurchasingSourceFluentHelper getAllPurchasingSource()
PurchasingSource
entities.PurchasingSource
entities. This fluent helper allows methods which modify the underlying query to be
called before executing the query itself. To perform execution, call the
execute
method on the fluent helper object.@Nonnull PurchasingSourceByKeyFluentHelper getPurchasingSourceByKey(String material, String plant, String sourceListRecord)
PurchasingSource
entity using key fields.material
- Alphanumeric key uniquely identifying the material.
Constraints: Not nullable, Maximum length: 40
plant
- Specifies the key for a production facility or branch office within the company (that is, the company
code).
Constraints: Not nullable, Maximum length: 4
sourceListRecord
- Alphanumeric key uniquely identifying the document.
Constraints: Not nullable, Maximum length: 5
PurchasingSource
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
execute
method on the fluent helper object.@Nonnull PurchasingSourceCreateFluentHelper createPurchasingSource(@Nonnull PurchasingSource purchasingSource)
PurchasingSource
entity and save it to the S/4HANA system.purchasingSource
- PurchasingSource
entity object that will be created in the S/4HANA system.PurchasingSource
entity. To perform execution, call the
execute
method on the fluent helper object.@Nonnull PurchasingSourceUpdateFluentHelper updatePurchasingSource(@Nonnull PurchasingSource purchasingSource)
PurchasingSource
entity and save it to the S/4HANA system.purchasingSource
- PurchasingSource
entity object that will be updated in the S/4HANA system.PurchasingSource
entity. To perform execution, call the
execute
method on the fluent helper object.@Nonnull PurchasingSourceDeleteFluentHelper deletePurchasingSource(@Nonnull PurchasingSource purchasingSource)
PurchasingSource
entity in the S/4HANA system.purchasingSource
- PurchasingSource
entity object that will be deleted in the S/4HANA system.PurchasingSource
entity. To perform execution, call the
execute
method on the fluent helper object.Copyright © 2019 SAP SE. All rights reserved.