public interface SupplierItemService
You can use this service to create, read and update supplier item. The service is based on the OData protocol and can be consumed by external systems.
Reference: SAP API Business Hub
OData Service: | SUPPLIERITEM_0001 |
API Version: | 1 |
Communication Scenario: | Field Logistics - Manage Supplier Item Integration (SAP_COM_0732) |
Scope Items: | Field Logistics Planning and Execution – Supplier Items (4AH) |
Authentication Methods: | Basic, x509 |
Service Group Name: | API_SUPPLIERITEM |
Business Object: | FldLogsSupplierItem |
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 |
---|---|
BatchRequestBuilder |
batch()
Creates a batch request builder object.
|
CountRequestBuilder<SupplierItem> |
countSupplierItem()
Fetch the number of entries from the
SupplierItem entity
collection matching the filter and search expressions. |
CreateRequestBuilder<SupplierItem> |
createSupplierItem(SupplierItem supplierItem)
Create a new
SupplierItem
entity and save it to the S/4HANA system. |
GetAllRequestBuilder<SupplierItem> |
getAllSupplierItem()
Fetch multiple
SupplierItem entities. |
GetByKeyRequestBuilder<SupplierItem> |
getSupplierItemByKey(UUID fldLogsSuplrItemUUID)
Fetch a single
SupplierItem entity using key fields. |
UpdateRequestBuilder<SupplierItem> |
updateSupplierItem(SupplierItem supplierItem)
Update an existing
SupplierItem entity and save it to the S/4HANA system. |
SupplierItemService |
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 SupplierItemService withServicePath(@Nonnull String servicePath)
servicePath
- Service path that will override the default.@Nonnull BatchRequestBuilder batch()
execute
method on the request builder object.@Nonnull GetAllRequestBuilder<SupplierItem> getAllSupplierItem()
SupplierItem
entities.SupplierItem
entities. This request builder allows methods which modify the underlying query to be called before
executing the query itself. To perform execution, call the
execute
method on the request builder object.@Nonnull CountRequestBuilder<SupplierItem> countSupplierItem()
SupplierItem
entity
collection matching the filter and search expressions.SupplierItem
entities. This request builder allows methods which modify the underlying query to be called before
executing the query itself. To perform execution, call the
execute
method on the request builder object.@Nonnull GetByKeyRequestBuilder<SupplierItem> getSupplierItemByKey(@Nonnull UUID fldLogsSuplrItemUUID)
SupplierItem
entity using key fields.fldLogsSuplrItemUUID
- Supplier Item UUID
Constraints: Not nullable
SupplierItem
entity using key fields. This request builder allows methods which modify the underlying query to be
called before executing the query itself. To perform execution, call the
execute
method on the request builder object.@Nonnull CreateRequestBuilder<SupplierItem> createSupplierItem(@Nonnull SupplierItem supplierItem)
SupplierItem
entity and save it to the S/4HANA system.supplierItem
- SupplierItem
entity object that will be created in the S/4HANA system.SupplierItem
entity. To perform execution, call the
execute
method on the request builder object.@Nonnull UpdateRequestBuilder<SupplierItem> updateSupplierItem(@Nonnull SupplierItem supplierItem)
SupplierItem
entity and save it to the S/4HANA system.supplierItem
- SupplierItem
entity object that will be updated in the S/4HANA system.SupplierItem
entity. To perform execution, call the
execute
method on the request builder object.Copyright © 2021 SAP SE. All rights reserved.