A_StorageLocation

DDL: A_STORAGELOCATION Type: view COMPOSITE Package: VDM_MD_STORAGE_LOCATION

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)

SourceAliasJoin Type
I_StorageLocation _StorageLocation from

Annotations (15)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
API_STORAGELOCATION_SRV API_STORAGELOCATION_SRV V2 C2 C1

Fields (8)

KeyFieldSource TableSource FieldDescription
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'