I_EngSnpshtHdr

DDL: I_ENGSNPSHTHDR SQL: IENGSNPHDR Type: view BASIC Package: VDM_MPE_PLAN_ENG_SNPSHT

Engineering Snapshot Header

I_EngSnpshtHdr is a Basic CDS View that provides data about "Engineering Snapshot Header" in SAP S/4HANA. It reads from 1 data source (mpe_snp_hdr) and exposes 21 fields with key field EngSnapshotUUID. Part of development package VDM_MPE_PLAN_ENG_SNPSHT.

Data Sources (1)

SourceAliasJoin Type
mpe_snp_hdr Header from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IENGSNPHDR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Engineering Snapshot Header view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY EngSnapshotUUID mpe_snp_hdr uuid Waste Partner UUID
EngSnapshotID mpe_snp_hdr snapshot_id Snapshot ID
EngSnapshotName mpe_snp_hdr snapshot_name Snapshot Name
EngSnapshotType mpe_snp_hdr snapshot_type Snapshot Type
Material mpe_snp_hdr matnr Vehicle Model
Plant mpe_snp_hdr werks Receiving Plant
BillOfMaterialVariantUsage mpe_snp_hdr stlan Usage
BillOfMaterialVariant mpe_snp_hdr stlal AlternativeBOM
DocumentInfoRecordDocType mpe_snp_hdr dokar SW Document Type
DocumentInfoRecordDocNumber mpe_snp_hdr doknr Document
DocumentInfoRecordDocPart mpe_snp_hdr doktl Document Part
PlanningScopeInternalID mpe_snp_hdr plan_scope_documentid Document Id
PlanningScopeAlternative mpe_snp_hdr plan_scope_alt Plan Scope Alternate
EngSnpshtRevisionNumber mpe_snp_hdr revn_nmbr Snapshot Revision
EngSnpshtAuxiliaryPrepSts mpe_snp_hdr aux_prep_sts PiP Data Prep Status
EngSnpshtChangePrepSts mpe_snp_hdr chg_prep_sts Chg Prep Status
EngSnpshtProposedEffectiveDate mpe_snp_hdr prpsd_effective_date Proposed Effective Date
CreatedByUser mpe_snp_hdr created_by Version Created By
CreationDateTime mpe_snp_hdr created_at Uploaded On
LastChangedByUser mpe_snp_hdr changed_by User Name
LastChangeDateTime mpe_snp_hdr changed_at 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_EngSnpshtHdr.
-- 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: IENGSNPHDR

CREATE VIEW I_EngSnpshtHdr AS
SELECT
  Header.uuid AS EngSnapshotUUID,
  Header.snapshot_id AS EngSnapshotID,
  Header.snapshot_name AS EngSnapshotName,
  Header.snapshot_type AS EngSnapshotType,
  Header.matnr AS Material,
  Header.werks AS Plant,
  Header.stlan AS BillOfMaterialVariantUsage,
  Header.stlal AS BillOfMaterialVariant,
  Header.dokar AS DocumentInfoRecordDocType,
  Header.doknr AS DocumentInfoRecordDocNumber,
  Header.doktl AS DocumentInfoRecordDocPart,
  Header.plan_scope_documentid AS PlanningScopeInternalID,
  Header.plan_scope_alt AS PlanningScopeAlternative,
  Header.revn_nmbr AS EngSnpshtRevisionNumber,
  Header.aux_prep_sts AS EngSnpshtAuxiliaryPrepSts,
  Header.chg_prep_sts AS EngSnpshtChangePrepSts,
  Header.prpsd_effective_date AS EngSnpshtProposedEffectiveDate,
  Header.created_by AS CreatedByUser,
  Header.created_at AS CreationDateTime,
  Header.changed_by AS LastChangedByUser,
  Header.changed_at AS LastChangeDateTime
FROM mpe_snp_hdr AS Header
;