I_ENGSNPSHTOBJREF

CDS View

Engineering Snapshot Object Reference

I_ENGSNPSHTOBJREF is a CDS View in S/4HANA. Engineering Snapshot Object Reference. It contains 7 fields. 3 CDS views read from this table.

CDS Views using this table (3)

ViewTypeJoinVDMDescription
I_EngSnpshtRefDoc view from COMPOSITE Engineering Snapshot Ref Obj Document
I_EngSnpshtRefEngBOM view from COMPOSITE Engineering Snapshot Reference Obj EBOM
I_EngSnpshtRefMfgBOM view from COMPOSITE Engineering Snapshot Reference Obj MBOM

Fields (7)

KeyField CDS FieldsUsed in Views
KEY EngSnapshotRefUUID EngSnapshotRefUUID 3
CreatedByUser CreatedByUser 3
CreationDateTime CreationDateTime 3
EngSnapshotUUID EngSnapshotUUID 3
EngSnpshtRefType EngSnpshtRefType 3
LastChangeDateTime LastChangeDateTime 3
LastChangedByUser LastChangedByUser 3
@AbapCatalog.sqlViewName: 'IENGSNPOBJREF'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Engineering Snapshot Object Reference'
@ObjectModel.usageType: {serviceQuality: #C,
                         dataClass: #MIXED,
                         sizeCategory: #L}
@VDM.viewType:#BASIC

define view I_EngSnpshtObjRef
  as select from mpe_snp_obj_ref as reference
{
  key reference.uuid       as EngSnapshotRefUUID,
      reference.hdr_uuid   as EngSnapshotUUID,
      reference.type       as EngSnpshtRefType,
      reference.ref_key1   as EngSnpshtRefKey1,
      reference.ref_key2   as EngSnpshtRefKey2,
      reference.ref_key3   as EngSnpshtRefKey3,
      reference.ref_key4   as EngSnpshtRefKey4,
      reference.ref_key5   as EngSnpshtRefKey5,
      reference.created_by as CreatedByUser,
      reference.created_at as CreationDateTime,
      reference.changed_by as LastChangedByUser,
      reference.changed_at as LastChangeDateTime
}