I_PhysInvtryStorageLocationVH

DDL: I_PHYSINVTRYSTORAGELOCATIONVH Type: view_entity COMPOSITE

Storage Locations in Physical Inventory

I_PhysInvtryStorageLocationVH is a Composite CDS View that provides data about "Storage Locations in Physical Inventory" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 6 fields with key fields Plant, StorageLocation. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation I_StorageLocation from

Associations (1)

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

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Storage Locations in Physical Inventory view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey StorageLocation view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #NONE view
Analytics.technicalName IPISTOLOCVH view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
StorageLocationName StorageLocationName Storage Loc. Name
ConfigDeprecationCode ConfigDeprecationCode Validity
_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_PhysInvtryStorageLocationVH.
-- 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_PhysInvtryStorageLocationVH AS
SELECT
  Plant,
  StorageLocation,
  StorageLocationName,
  ConfigDeprecationCode
FROM I_StorageLocation
LEFT OUTER JOIN I_ConfignDeprecationCode AS _ConfigDeprecationCode ON _ConfigDeprecationCode.ConfigurationDeprecationCode = ConfigDeprecationCode AND _ConfigDeprecationCode.ConfigurationDeprecationCode <> 'E'  -- association [1..1]
;