C_JITMaterialValueHelp

DDL: C_JITMATERIALVALUEHELP Type: view_entity CONSUMPTION

Material

C_JITMaterialValueHelp is a Consumption CDS View that provides data about "Material" in SAP S/4HANA. It reads from 1 data source (I_ProductPlant) and exposes 7 fields with key fields Product, Plant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductPlant I_ProductPlant from

Associations (1)

CardinalityTargetAliasCondition
[0..1] C_JITPlantValueHelp _JITPlantValueHelp $projection.Plant = _JITPlantValueHelp.Plant

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
Consumption.ranked true view
EndUserText.label Material view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Product view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Search.searchable true view
VDM.viewType #CONSUMPTION view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Product Product Material
KEY Plant Plant Valuation Area
ProductName Material Name
SerialNumberProfile SerialNumberProfile SerialNoProfile
_Product _Product
_Plant _Plant
_JITPlantValueHelp _JITPlantValueHelp

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 C_JITMaterialValueHelp.
-- 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 C_JITMaterialValueHelp AS
SELECT
  Product,
  Plant,
  _Product._Text[1:Language = $session.system_language].ProductName AS ProductName,
  SerialNumberProfile
FROM I_ProductPlant
LEFT OUTER JOIN C_JITPlantValueHelp AS _JITPlantValueHelp ON Plant = _JITPlantValueHelp.Plant  -- association [0..1]
;