I_EngSnpshtHdrEBOM

DDL: I_ENGSNPSHTHDREBOM SQL: IENGSNPHDREBOM Type: view COMPOSITE

Engineering snapshot header EBOM

I_EngSnpshtHdrEBOM is a Composite CDS View that provides data about "Engineering snapshot header EBOM" in SAP S/4HANA. It reads from 2 data sources (I_EngSnpshtRefEngBOM, I_EngSnpshtHdr) and exposes 17 fields with key field EngSnapshotRefUUID.

Data Sources (2)

SourceAliasJoin Type
I_EngSnpshtRefEngBOM EngBom from
I_EngSnpshtHdr Snpshthdr inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IENGSNPHDREBOM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Engineering snapshot header EBOM view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY EngSnapshotRefUUID I_EngSnpshtRefEngBOM EngSnapshotRefUUID
EngSnapshotUUID I_EngSnpshtRefEngBOM EngSnapshotUUID Waste Partner UUID
EngSnapshotID I_EngSnpshtHdr EngSnapshotID Snapshot ID
EngSnpshtRevisionNumber I_EngSnpshtHdr EngSnpshtRevisionNumber Snapshot Revision
Material I_EngSnpshtRefEngBOM Material Vehicle Model
Plant I_EngSnpshtRefEngBOM Plant Valuation Area
BillOfMaterialVariant I_EngSnpshtRefEngBOM BillOfMaterialVariant AlternativeBOM
BillOfMaterialVariantUsage I_EngSnpshtRefEngBOM BillOfMaterialVariantUsage Usage
BillOfMaterialVersion I_EngSnpshtRefEngBOM BillOfMaterialVersion BOM Version
EngSnpshtAuxiliaryPrepSts I_EngSnpshtHdr EngSnpshtAuxiliaryPrepSts PiP Data Prep Status
BillOfMaterial I_EngSnpshtRefEngBOM BillOfMaterial BOM
BOMVersionStatus I_EngSnpshtRefEngBOM BOMVersionStatus BOM Version Status
BillOfMaterialStatus I_EngSnpshtRefEngBOM BillOfMaterialStatus BOM Status
CreatedByUser I_EngSnpshtRefEngBOM CreatedByUser User Name
CreationDateTime I_EngSnpshtRefEngBOM CreationDateTime Timestamp
LastChangedByUser I_EngSnpshtRefEngBOM LastChangedByUser User Name
LastChangeDateTime I_EngSnpshtRefEngBOM LastChangeDateTime Timestamp

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_EngSnpshtHdrEBOM.
-- 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: IENGSNPHDREBOM

CREATE VIEW I_EngSnpshtHdrEBOM AS
SELECT
  EngBom.EngSnapshotRefUUID AS EngSnapshotRefUUID,
  EngBom.EngSnapshotUUID AS EngSnapshotUUID,
  Snpshthdr.EngSnapshotID AS EngSnapshotID,
  Snpshthdr.EngSnpshtRevisionNumber AS EngSnpshtRevisionNumber,
  EngBom.Material AS Material,
  EngBom.Plant AS Plant,
  EngBom.BillOfMaterialVariant AS BillOfMaterialVariant,
  EngBom.BillOfMaterialVariantUsage AS BillOfMaterialVariantUsage,
  EngBom.BillOfMaterialVersion AS BillOfMaterialVersion,
  Snpshthdr.EngSnpshtAuxiliaryPrepSts AS EngSnpshtAuxiliaryPrepSts,
  EngBom.BillOfMaterial AS BillOfMaterial,
  EngBom.BOMVersionStatus AS BOMVersionStatus,
  EngBom.BillOfMaterialStatus AS BillOfMaterialStatus,
  EngBom.CreatedByUser AS CreatedByUser,
  EngBom.CreationDateTime AS CreationDateTime,
  EngBom.LastChangedByUser AS LastChangedByUser,
  EngBom.LastChangeDateTime AS LastChangeDateTime
FROM I_EngSnpshtRefEngBOM AS EngBom
INNER JOIN I_EngSnpshtHdr AS Snpshthdr ON /* join condition not captured in parsed metadata */
;