C_ChgImpactRoutingMBOM

DDL: C_CHGIMPACTROUTINGMBOM SQL: CCHGIMROUMBM Type: view CONSUMPTION Package: MPE_PLAN_CIMA

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 11 fields with key fields BillOfMaterial, BillOfMaterialCategory, BillOfMaterialVariant, BillOfMaterialVariantUsage, BillOfMaterialVersion. Part of development package MPE_PLAN_CIMA.

Data Sources (1)

SourceAliasJoin Type
I_BOOVersionBOMAssignment BOOVersionBOMAssignment from

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 (11)

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
Plant Plant Valuation Area

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,
  Plant
FROM I_BOOVersionBOMAssignment AS BOOVersionBOMAssignment
;