I_EngSnpshtHdr
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| mpe_snp_hdr | Header | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EngSnapshotUUID | mpe_snp_hdr | uuid | |
| EngSnapshotID | mpe_snp_hdr | snapshot_id | ||
| EngSnapshotName | mpe_snp_hdr | snapshot_name | ||
| EngSnapshotType | mpe_snp_hdr | snapshot_type | ||
| Material | mpe_snp_hdr | matnr | ||
| Plant | mpe_snp_hdr | werks | ||
| BillOfMaterialVariantUsage | mpe_snp_hdr | stlan | ||
| BillOfMaterialVariant | mpe_snp_hdr | stlal | ||
| DocumentInfoRecordDocType | mpe_snp_hdr | dokar | ||
| DocumentInfoRecordDocNumber | mpe_snp_hdr | doknr | ||
| DocumentInfoRecordDocPart | mpe_snp_hdr | doktl | ||
| PlanningScopeInternalID | mpe_snp_hdr | plan_scope_documentid | ||
| PlanningScopeAlternative | mpe_snp_hdr | plan_scope_alt | ||
| EngSnpshtRevisionNumber | mpe_snp_hdr | revn_nmbr | ||
| EngSnpshtAuxiliaryPrepSts | mpe_snp_hdr | aux_prep_sts | ||
| EngSnpshtChangePrepSts | mpe_snp_hdr | chg_prep_sts | ||
| EngSnpshtProposedEffectiveDate | mpe_snp_hdr | prpsd_effective_date | ||
| CreatedByUser | mpe_snp_hdr | created_by | ||
| CreationDateTime | mpe_snp_hdr | created_at | ||
| LastChangedByUser | mpe_snp_hdr | changed_by | ||
| LastChangeDateTime | mpe_snp_hdr | changed_at |
@AbapCatalog.sqlViewName: 'IENGSNPHDR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Engineering Snapshot Header'
@ObjectModel.usageType: {serviceQuality: #C,
dataClass: #MIXED,
sizeCategory: #L}
@VDM.viewType:#BASIC
define view I_EngSnpshtHdr
as select from mpe_snp_hdr as Header
{
key 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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MPE_SNP_HDR"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA