P_Rtc_Diff_Item_Matnr

DDL: P_RTC_DIFF_ITEM_MATNR SQL: PDIFFITEMMATNR Type: view BASIC

P_Rtc_Diff_Item_Matnr is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (mara) and exposes 2 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mara mara from

Associations (1)

CardinalityTargetAliasCondition
[1..*] makt _Text $projection.DES_ID = _Text.matnr

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PDIFFITEMMATNR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #D view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
DES_ID matnr Vehicle Model
DES_TXT

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_Rtc_Diff_Item_Matnr.
-- 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: PDIFFITEMMATNR

CREATE VIEW P_Rtc_Diff_Item_Matnr AS
SELECT
  matnr AS DES_ID,
  _Text[1:spras = $session.system_language].maktx AS DES_TXT
FROM mara
LEFT OUTER JOIN makt AS _Text ON DES_ID = _Text.matnr  -- association [1..*]
;