P_Storagetype_T

DDL: P_STORAGETYPE_T SQL: PSTORAGETYPET Type: view BASIC

P_Storagetype_T is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (t301t) and exposes 4 fields with key fields Language, Warehouse, StorageType.

Data Sources (1)

SourceAliasJoin Type
t301t t301t from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PSTORAGETYPET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.private true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY Warehouse lgnum Whse Number
KEY StorageType lgtyp Storage Type
StorageTypeName ltypt Stor.type 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 P_Storagetype_T.
-- 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.
-- SQL view name: PSTORAGETYPET

CREATE VIEW P_Storagetype_T AS
SELECT
  spras AS Language,
  lgnum AS Warehouse,
  lgtyp AS StorageType,
  ltypt AS StorageTypeName
FROM t301t
;