I_MfgObjectLogEventType

DDL: I_MFGOBJECTLOGEVENTTYPE SQL: IMPELOGEVTYPE Type: view BASIC

Manufacturing Object Log Event Type

I_MfgObjectLogEventType is a Basic CDS View that provides data about "Manufacturing Object Log Event Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MfgObjectLogEventType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MfgObjectLogEventTypeText _Text $projection.MfgObjectLogEventType = _Text.MfgObjectLogEventType

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IMPELOGEVTYPE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MfgObjectLogEventType view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
EndUserText.label Manufacturing Object Log Event Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MfgObjectLogEventType
_Text _Text
@AbapCatalog.sqlViewName: 'IMPELOGEVTYPE'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'MfgObjectLogEventType'
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@EndUserText.label: 'Manufacturing Object Log Event Type'

define view I_MfgObjectLogEventType
  as select from dd07l as typ
  association [0..*] to I_MfgObjectLogEventTypeText as _Text on $projection.MfgObjectLogEventType = _Text.MfgObjectLogEventType
{
      @ObjectModel.text.association: '_Text'
      // cast to data element

  key cast( cast(substring(typ.domvalue_l, 1, 3) as abap.numc(3) ) as mpe_log_event) as MfgObjectLogEventType,

      // Associations

      _Text
}
where
      typ.domname  = 'MPE_LOG_EVENT'
  and typ.as4local = 'A'; 
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_MFGOBJECTLOGEVENTTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/