I_MfgActnSettingReasonTypeText

DDL: I_MFGACTNSETTINGREASONTYPETEXT SQL: IMPERSNCTTXT Type: view BASIC

Reason Code Requirement Text

I_MfgActnSettingReasonTypeText is a Basic CDS View that provides data about "Reason Code Requirement Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields MfgActionSettingReasonCodeType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t txt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMPERSNCTTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MfgActionSettingReasonCodeType view
ObjectModel.dataCategory #TEXT 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 Text view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MfgActionSettingReasonCodeType
KEY Language
MfgActnSttgReasonCodeTypeName dd07t ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'IMPERSNCTTXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'MfgActionSettingReasonCodeType'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@EndUserText.label: 'Reason Code Requirement Text'
@Search.searchable: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_MfgActnSettingReasonTypeText
  as select from dd07t as txt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element: 'MfgActnSttgReasonCodeTypeName'
  key cast( cast(substring(txt.domvalue_l, 1, 1) as abap.numc(1)) as mpe_action_setting_reason_type)  as MfgActionSettingReasonCodeType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(txt.ddlanguage as spras preserving type)                                                   as Language,
      @Semantics.text: true
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      txt.ddtext                                                                                      as MfgActnSttgReasonCodeTypeName,

      // Associations

      _Language
}
where
      domname  = 'MPE_REASON_TYPE'
  and as4local = 'A';