C_ChgImpactRoutingMBOM

DDL: C_CHGIMPACTROUTINGMBOM SQL: CCHGIMROUMBM Type: view CONSUMPTION

MBOMs list for the Routing

C_ChgImpactRoutingMBOM is a Consumption CDS View that provides data about "MBOMs list for the Routing" in SAP S/4HANA. It reads from 1 data source (I_BOOVersionBOMAssignment) and exposes 13 fields with key fields BillOfMaterial, BillOfMaterialCategory, BillOfMaterialVariant, BillOfMaterialVariantUsage, BillOfMaterialVersion. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BOOVersionBOMAssignment BOOVersionBOMAssignment from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MaterialText _MaterialText $projection.Material = _MaterialText.Material and _MaterialText.Language = $session.system_language

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CCHGIMROUMBM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label MBOMs list for the Routing view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #CONSUMPTION view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial BillOfMaterial BOM
KEY BillOfMaterialCategory BillOfMaterialCategory BOM category
KEY BillOfMaterialVariant BillOfMaterialVariant AlternativeBOM
KEY BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
KEY BillOfMaterialVersion BillOfMaterialVersion BOM Version
KEY BillOfOperationsGroup BillOfOperationsGroup Group
KEY BillOfOperationsType BillOfOperationsType Task List Type
KEY BillOfOperationsVersion BillOfOperationsVersion Routing Version
KEY BillOfOperationsVariant BillOfOperationsVariant Group Counter
Material Material Vehicle Model
MaterialName _MaterialText MaterialName Material Description
Plant Plant Valuation Area
_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_ChgImpactRoutingMBOM.
-- 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: CCHGIMROUMBM

CREATE VIEW C_ChgImpactRoutingMBOM AS
SELECT
  BillOfMaterial,
  BillOfMaterialCategory,
  BillOfMaterialVariant,
  BillOfMaterialVariantUsage,
  BillOfMaterialVersion,
  BillOfOperationsGroup,
  BillOfOperationsType,
  BillOfOperationsVersion,
  BillOfOperationsVariant,
  Material,
  _MaterialText.MaterialName AS MaterialName,
  Plant
FROM I_BOOVersionBOMAssignment AS BOOVersionBOMAssignment
LEFT OUTER JOIN I_MaterialText AS _MaterialText ON Material = _MaterialText.Material AND _MaterialText.Language = $session.system_language  -- association [0..1]
;