I_MfgActionReasonCodeRqmt

DDL: I_MFGACTIONREASONCODERQMT SQL: IMPERSNCR Type: view BASIC Package: MPE_CORE

Reason Code Requirement

I_MfgActionReasonCodeRqmt is a Basic CDS View that provides data about "Reason Code Requirement" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MfgActionReasonCodeRequirement. It has 1 association to related views. Part of development package MPE_CORE.

Data Sources (1)

SourceAliasJoin Type
dd07l typ from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MfgActionReasonCodeRqmtText _Text $projection.MfgActionReasonCodeRequirement = _Text.MfgActionReasonCodeRequirement

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IMPERSNCR view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MfgActionReasonCodeRequirement view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
EndUserText.label Reason Code Requirement view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MfgActionReasonCodeRequirement
_Text _Text
@AbapCatalog.sqlViewName: 'IMPERSNCR'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'MfgActionReasonCodeRequirement'
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@EndUserText.label: 'Reason Code Requirement'

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

  key cast( cast(substring(typ.domvalue_l, 1, 1) as abap.numc(1) ) as mpe_reason_type) as MfgActionReasonCodeRequirement,

      // Associations

      _Text
}
where
      typ.domname  = 'MPE_REASON_TYPE'
  and typ.as4local = 'A';