I_MfgBuyOffActionText

DDL: I_MFGBUYOFFACTIONTEXT SQL: IMFGBUYOFACTNTXT Type: view BASIC

Buyoff Action text

I_MfgBuyOffActionText is a Basic CDS View that provides data about "Buyoff Action text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields MfgBuyOffAction, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMFGBUYOFACTNTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Buyoff Action text view
ObjectModel.representativeKey MfgBuyOffAction view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MfgBuyOffAction
KEY Language ddlanguage
MfgBuyOffActionName
Associations_Language
@AbapCatalog.sqlViewName: 'IMFGBUYOFACTNTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Buyoff Action text'
@ObjectModel.representativeKey: 'MfgBuyOffAction'
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #META}
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
define view I_MfgBuyOffActionText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element: 'MfgBuyOffActionName'
  key cast(substring(domvalue_l, 1, 2)  as mpe_buyoff_action preserving type )      as MfgBuyOffAction,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                                                    as Language,

      @Semantics.text: true
      cast(ddtext as mpe_buyoff_action_text preserving type )                       as MfgBuyOffActionName,
      --Associations
      _Language
}
where
      domname  = 'MPE_BUYOFF_ACTION'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/