I_PPDSSublocationVH

DDL: I_PPDSSUBLOCATIONVH Type: view_entity BASIC

PPDS sublocation

I_PPDSSublocationVH is a Basic CDS View that provides data about "PPDS sublocation" in SAP S/4HANA. It reads from 1 data source (I_StorageLocation) and exposes 4 fields with key fields StorageLocation, Plant.

Data Sources (1)

SourceAliasJoin Type
I_StorageLocation I_StorageLocation from

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label PPDS sublocation view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view
VDM.viewType #BASIC view
ObjectModel.representativeKey StorageLocation view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StorageLocation I_StorageLocation StorageLocation Sublocation
KEY Plant I_StorageLocation Plant Valuation Area
StorageLocationName I_StorageLocation StorageLocationName Sublocation Description
_Plant _Plant

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