C_ChangeRecordMfgBOMVH

DDL: C_CHANGERECORDMFGBOMVH Type: view_entity CONSUMPTION Package: VDM_PLMB_CR

Manufacturing BOM Value Help

C_ChangeRecordMfgBOMVH is a Consumption CDS View that provides data about "Manufacturing BOM Value Help" in SAP S/4HANA. It reads from 1 data source (I_ChangeRecordMfgBOM) and exposes 8 fields with key fields Material, Plant, BillOfMaterialVariantUsage, BillOfMaterialVariant, BillOfMaterialVersion. It has 3 associations to related views. Part of development package VDM_PLMB_CR.

Data Sources (1)

SourceAliasJoin Type
I_ChangeRecordMfgBOM ChangeRecordMfgBOMVH from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[0..*] I_MaterialText _MaterialText $projection.Material = _MaterialText.Material
[0..*] I_BillOfMaterialUsageText _BillOfMaterialUsageText $projection.BillOfMaterialVariantUsage = _BillOfMaterialUsageText.BillOfMaterialVariantUsage

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Manufacturing BOM Value Help view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material I_ChangeRecordMfgBOM Material Vehicle Model
KEY Plant I_ChangeRecordMfgBOM Plant Valuation Area
KEY BillOfMaterialVariantUsage I_ChangeRecordMfgBOM BillOfMaterialVariantUsage Usage
KEY BillOfMaterialVariant I_ChangeRecordMfgBOM BillOfMaterialVariant AlternativeBOM
KEY BillOfMaterialVersion I_ChangeRecordMfgBOM BillOfMaterialVersion BOM Version
PlantName _Plant PlantName Plant Name
_BillOfMaterialUsageText _BillOfMaterialUsageText
_MaterialText _MaterialText

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_ChangeRecordMfgBOMVH.
-- 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_ChangeRecordMfgBOMVH AS
SELECT
  ChangeRecordMfgBOMVH.Material AS Material,
  ChangeRecordMfgBOMVH.Plant AS Plant,
  ChangeRecordMfgBOMVH.BillOfMaterialVariantUsage AS BillOfMaterialVariantUsage,
  ChangeRecordMfgBOMVH.BillOfMaterialVariant AS BillOfMaterialVariant,
  ChangeRecordMfgBOMVH.BillOfMaterialVersion AS BillOfMaterialVersion,
  _Plant.PlantName AS PlantName
FROM I_ChangeRecordMfgBOM AS ChangeRecordMfgBOMVH
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
LEFT OUTER JOIN I_MaterialText AS _MaterialText ON Material = _MaterialText.Material  -- association [0..*]
LEFT OUTER JOIN I_BillOfMaterialUsageText AS _BillOfMaterialUsageText ON BillOfMaterialVariantUsage = _BillOfMaterialUsageText.BillOfMaterialVariantUsage  -- association [0..*]
;