I_Matlvaluationclasstext

DDL: I_MATLVALUATIONCLASSTEXT Type: view_entity BASIC Package: VDM_MD_PRODUCT_DDIC

material valuation class text

I_Matlvaluationclasstext is a Basic CDS View that provides data about "material valuation class text" in SAP S/4HANA. It reads from 1 data source (t025t) and exposes 3 fields with key fields Language, MaterialValuationClass. Part of development package VDM_MD_PRODUCT_DDIC.

Data Sources (1)

SourceAliasJoin Type
t025t t025t from

Annotations (11)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IMATVALNCLSTXT view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
EndUserText.label material valuation class text view
ObjectModel.representativeKey MaterialValuationClass view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
AbapCatalog.entityBuffer.definitionAllowed true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Off. Language
KEY MaterialValuationClass Valuation Class
MaterialUsabilityProfileName t025t bkbez Description

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_Matlvaluationclasstext.
-- 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_Matlvaluationclasstext AS
SELECT
  cast( spras as spras preserving type ) AS Language,
  cast(bklas as valuationclass preserving type ) AS MaterialValuationClass,
  t025t.bkbez AS MaterialUsabilityProfileName
FROM t025t
;