I_RFM_ProductCharcValue3Txt

DDL: I_RFM_PRODUCTCHARCVALUE3TXT SQL: IRFMPRDCHARVAL3T Type: view BASIC

Product characteristics value 3

I_RFM_ProductCharcValue3Txt is a Basic CDS View that provides data about "Product characteristics value 3" in SAP S/4HANA. It reads from 2 data sources (mara, I_RetailCharacteristicValueT) and exposes 5 fields with key fields Product, ProductCharacteristic3, Language.

Data Sources (2)

SourceAliasJoin Type
mara M from
I_RetailCharacteristicValueT T inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRFMPRDCHARVAL3T view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProductCharacteristic3 view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Product characteristics value 3 view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product mara matnr Vehicle Model
KEY ProductCharacteristic3 mara size2 Size 2
KEY Language I_RetailCharacteristicValueT Language Report Text Language
ProductCharacteristic3Desc I_RetailCharacteristicValueT RetailCharacteristicValueDesc Description
_Language _Language

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_RFM_ProductCharcValue3Txt.
-- 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: IRFMPRDCHARVAL3T

CREATE VIEW I_RFM_ProductCharcValue3Txt AS
SELECT
  M.matnr AS Product,
  M.size2 AS ProductCharacteristic3,
  T.Language AS Language,
  T.RetailCharacteristicValueDesc AS ProductCharacteristic3Desc
FROM mara AS M
INNER JOIN I_RetailCharacteristicValueT AS T ON /* join condition not captured in parsed metadata */
;