I_ChgImpactBOMLtstChgState

DDL: I_CHGIMPACTBOMLTSTCHGSTATE SQL: ICHGBOMHDLTSCHG Type: view COMPOSITE

BOM Header Latest Change States

I_ChgImpactBOMLtstChgState is a Composite CDS View that provides data about "BOM Header Latest Change States" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterial) and exposes 4 fields with key fields BillOfMaterial, BillOfMaterialCategory, BillOfMaterialVariant.

Data Sources (1)

SourceAliasJoin Type
I_BillOfMaterial BillOfMaterial from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ICHGBOMHDLTSCHG view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label BOM Header Latest Change States view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BillOfMaterial I_BillOfMaterial BillOfMaterial BOM
KEY BillOfMaterialCategory I_BillOfMaterial BillOfMaterialCategory BOM category
KEY BillOfMaterialVariant I_BillOfMaterial BillOfMaterialVariant AlternativeBOM
BOMHdrLtstIntChgCount

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_ChgImpactBOMLtstChgState.
-- 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: ICHGBOMHDLTSCHG

CREATE VIEW I_ChgImpactBOMLtstChgState AS
SELECT
  BillOfMaterial.BillOfMaterial AS BillOfMaterial,
  BillOfMaterial.BillOfMaterialCategory AS BillOfMaterialCategory,
  BillOfMaterial.BillOfMaterialVariant AS BillOfMaterialVariant,
  max(BOMHeaderInternalChangeCount) AS BOMHdrLtstIntChgCount
FROM I_BillOfMaterial AS BillOfMaterial
;