A_StorageLocation
Storage Location
A_StorageLocation is a Composite CDS View that provides data about "Storage Location" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 8 fields with key fields Plant, StorageLocation. It is exposed through 1 OData service (API_STORAGELOCATION_SRV). Part of development package VDM_MD_STORAGE_LOCATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StorageLocation | _StorageLocation | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ASTORAGELOCATION | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | Storage Location | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.createEnabled | false | view | |
| ObjectModel.updateEnabled | false | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_STORAGELOCATION_SRV | API_STORAGELOCATION_SRV | V2 | C2 | C1 |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | Plant | ||
| KEY | StorageLocation | StorageLocation | ||
| StorageLocationName | StorageLocationName | |||
| SalesOrganization | SalesOrganization | |||
| DistributionChannel | DistributionChannel | |||
| Division | Division | |||
| IsStorLocAuthznCheckActive | IsStorLocAuthznCheckActive | |||
| ConfigDeprecationCode | ConfigDeprecationCode |
@AbapCatalog: {
sqlViewName: 'ASTORAGELOCATION',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #NOT_REQUIRED
}
@EndUserText.label: 'Storage Location'
@ObjectModel: {
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass: #CUSTOMIZING
},
createEnabled: false,
updateEnabled: false
}
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view A_StorageLocation as select from I_StorageLocation as _StorageLocation
{
key Plant,
@ObjectModel.sapObjectNodeTypeReference:'StorageLocation'
key StorageLocation,
StorageLocationName,
SalesOrganization,
DistributionChannel,
@ObjectModel.sapObjectNodeTypeReference:'Division'
Division,
IsStorLocAuthznCheckActive,
ConfigDeprecationCode
} where ConfigDeprecationCode <> 'E'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA