public interface HandlingUnitService extends BatchService<HandlingUnitServiceBatch>
In every API call, you can make use of the following operations: - You can retrieve header information for a handling unit based on the delivery reference or on the warehouse number plus the handling unit number. - You can retrieve item information for a handling unit. Apply any of the filters provided or retrieve all existing data..
Reference: SAP API Business Hub
OData Service: | API_HANDLING_UNIT |
API Version: | 1 |
Communication Scenario: | Handling Unit Integration (SAP_COM_0364) |
Scope Items: | Warehouse Outbound Processing (3BS) |
Authentication Methods: | Basic, x509, OAuth2 |
Business Object: | HandlingUnit |
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 |
---|---|
HandlingUnitFluentHelper |
getAllHandlingUnit()
Fetch multiple
HandlingUnit
entities. |
HandlingUnitItemFluentHelper |
getAllHandlingUnitItem()
Fetch multiple
HandlingUnitItem entities. |
HandlingUnitByKeyFluentHelper |
getHandlingUnitByKey(String handlingUnitExternalID,
String warehouse)
Fetch a single
HandlingUnit
entity using key fields. |
HandlingUnitItemByKeyFluentHelper |
getHandlingUnitItemByKey(String handlingUnitExternalID,
String warehouse,
UUID stockItemUUID)
Fetch a single
HandlingUnitItem entity using key fields. |
HandlingUnitService |
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 HandlingUnitService withServicePath(@Nonnull String servicePath)
servicePath
- Service path that will override the default.@Nonnull HandlingUnitFluentHelper getAllHandlingUnit()
HandlingUnit
entities.HandlingUnit
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 HandlingUnitByKeyFluentHelper getHandlingUnitByKey(String handlingUnitExternalID, String warehouse)
HandlingUnit
entity using key fields.handlingUnitExternalID
- Specifies an external identifier for the handling unit.
Constraints: Not nullable, Maximum length: 20
warehouse
- Alphanumeric key that identifies a complex, physical warehouse within the warehouse management system.
Constraints: Not nullable, Maximum length: 4
HandlingUnit
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 HandlingUnitItemFluentHelper getAllHandlingUnitItem()
HandlingUnitItem
entities.HandlingUnitItem
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 HandlingUnitItemByKeyFluentHelper getHandlingUnitItemByKey(String handlingUnitExternalID, String warehouse, UUID stockItemUUID)
HandlingUnitItem
entity using key fields.handlingUnitExternalID
- Specifies an external identifier for the handling unit.
Constraints: Not nullable, Maximum length: 20
stockItemUUID
- GUID Stock Item
Constraints: Not nullable
warehouse
- Alphanumeric key that identifies a complex, physical warehouse within the warehouse management system.
Constraints: Not nullable, Maximum length: 4
HandlingUnitItem
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.Copyright © 2019 SAP SE. All rights reserved.