public interface PurchasingSourceService extends BatchService<PurchasingSourceServiceBatch>
This synchronous inbound service enables you to create, update, and delete purchasing source lists. It is based on the OData protocol. The information is sent in the request as a payload. All information is used when creating a purchasing source list, and they are checked for authorizations. Once the purchasing source list has been created, the purchasing source list number is sent in the response. If there are any issues when the purchasing source list is created, the system displays error messages in the response.
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), Purchase Contract (OMD) |
Authentication Methods: | Basic, x509 |
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.
|
batch
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 © 2020 SAP SE. All rights reserved.