I_ChgRecdProductionVersion

DDL: I_CHGRECDPRODUCTIONVERSION SQL: ICRPRODNVERSION Type: view COMPOSITE

Change Record: Production Version

I_ChgRecdProductionVersion is a Composite CDS View that provides data about "Change Record: Production Version" in SAP S/4HANA. It reads from 1 data source (I_ProductionVersion) and exposes 5 fields.

Data Sources (1)

SourceAliasJoin Type
I_ProductionVersion I_ProductionVersion from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICRPRODNVERSION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
EndUserText.label Change Record: Production Version view

Fields (5)

KeyFieldSource TableSource FieldDescription
Material Material Vehicle Model
Plant Plant Valuation Area
BillOfMaterialVariantUsage BillOfMaterialVariantUsage Usage
BillOfMaterialVariant BillOfMaterialVariant AlternativeBOM
PlanningAndExecutionBOMIsDiff PlanningAndExecutionBOMIsDiff Plng Exec Mstr Diff

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_ChgRecdProductionVersion.
-- 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: ICRPRODNVERSION

CREATE VIEW I_ChgRecdProductionVersion AS
SELECT
  Material,
  Plant,
  BillOfMaterialVariantUsage,
  BillOfMaterialVariant,
  PlanningAndExecutionBOMIsDiff
FROM I_ProductionVersion
;