I_ChgRecdFuncLocBOM

DDL: I_CHGRECDFUNCLOCBOM SQL: ICHGRECD_FLBOM Type: view COMPOSITE

Chg Recd Funloc BOM

I_ChgRecdFuncLocBOM is a Composite CDS View that provides data about "Chg Recd Funloc BOM" in SAP S/4HANA. It reads from 1 data source (I_BillOfMaterial) and exposes 6 fields.

Data Sources (1)

SourceAliasJoin Type
I_BillOfMaterial BillOfMaterial from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICHGRECD_FLBOM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Chg Recd Funloc BOM view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
FunctionalLocation
Plant
BillOfMaterialVariantUsage
BillOfMaterialVariant
BillOfMaterialHeaderUUID I_BillOfMaterial BillOfMaterialHeaderUUID Guid
HeaderValidityStartDate

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_ChgRecdFuncLocBOM.
-- 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: ICHGRECD_FLBOM

CREATE VIEW I_ChgRecdFuncLocBOM AS
SELECT
  BillOfMaterial._Tpst.FunctionalLocation AS FunctionalLocation,
  BillOfMaterial._Tpst.Plant AS Plant,
  BillOfMaterial._Tpst.BillOfMaterialVariantUsage AS BillOfMaterialVariantUsage,
  BillOfMaterial._Tpst.BillOfMaterialVariant AS BillOfMaterialVariant,
  BillOfMaterial.BillOfMaterialHeaderUUID AS BillOfMaterialHeaderUUID,
  max(BillOfMaterial.HeaderValidityStartDate) AS HeaderValidityStartDate
FROM I_BillOfMaterial AS BillOfMaterial
;