I_StorageLocationStdVH

DDL: I_STORAGELOCATIONSTDVH Type: view BASIC

Storage Location

I_StorageLocationStdVH (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Database & Data Management

I_StorageLocationStdVH is a Basic CDS View that provides data about "Storage Location" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 10 fields with key fields Plant, StorageLocation. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Common Data
Purpose
This view provides value help for Storage Location . This view should be used for value help purposes only. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description Plant Plant StorageLocation Storage Location StorageLocationName Storage Location Name ConfigDeprecationCode Identify Deprecated, Valid, or Invalid Entries ConfignDeprecationCodeName Value Help Text for Deprecation Code PlantName Plant Name SalesOrganization Sales Organization for Intercompany Billing CompanyCode Company Code

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessDatabase & Data Management
Application ComponentLO-MD-MM
CapabilitiesAnalytical Dimension, Data Provider for Value Help
PackageDatabase & Data Management for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation I_StorageLocation from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ConfignDeprecationCode _ConfigDeprecationCode $projection.ConfigDeprecationCode = _ConfigDeprecationCode.ConfigurationDeprecationCode and _ConfigDeprecationCode.ConfigurationDeprecationCode <> 'E'

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName ISTORAGELOCSTDVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.dataMaintenance #RESTRICTED view
EndUserText.label Storage Location view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey StorageLocation view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Consumption.ranked true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation Storage Location
StorageLocationName StorageLocationName Storage Location Name
ConfigDeprecationCode ConfigDeprecationCode Deprecated Entries
ConfignDeprecationCodeName Value Help: Flag Obsolete Entries
PlantName _Plant PlantName Plant Name
SalesOrganization _Plant SalesOrganization Sales Organization for Intercompany Billing
CompanyCode Company Code
_Plant _Plant
_ConfigDeprecationCode _ConfigDeprecationCode

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_StorageLocationStdVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_StorageLocationStdVH AS
SELECT
  Plant,
  StorageLocation,
  StorageLocationName,
  ConfigDeprecationCode,
  _ConfigDeprecationCode._Text[1:Language=$session.system_language].ConfignDeprecationCodeName AS ConfignDeprecationCodeName,
  _Plant.PlantName AS PlantName,
  _Plant.SalesOrganization AS SalesOrganization,
  _Plant._ValuationArea.CompanyCode AS CompanyCode
FROM I_StorageLocation
LEFT OUTER JOIN I_ConfignDeprecationCode AS _ConfigDeprecationCode ON ConfigDeprecationCode = _ConfigDeprecationCode.ConfigurationDeprecationCode AND _ConfigDeprecationCode.ConfigurationDeprecationCode <> 'E'  -- association [1..1]
;