C_SupProtStorageLocationVH

DDL: C_SUPPROTSTORAGELOCATIONVH Type: view_entity CONSUMPTION

Supply Protection Storage Location

C_SupProtStorageLocationVH is a Consumption CDS View that provides data about "Supply Protection Storage Location" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 3 fields with key fields Plant, StorageLocation.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation StorageLocation from

Annotations (9)

NameValueLevelField
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey StorageLocation view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
EndUserText.label Supply Protection Storage Location view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
StorageLocationName StorageLocationName Storage Loc. Name

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 C_SupProtStorageLocationVH.
-- 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 C_SupProtStorageLocationVH AS
SELECT
  Plant,
  StorageLocation,
  StorageLocationName
FROM I_StorageLocation AS StorageLocation
;