I_ABOPExecutionMethodText

DDL: I_ABOPEXECUTIONMETHODTEXT Type: view_entity BASIC Package: ATP_BOP_SETUP_VDM

Execution method text in BOP

I_ABOPExecutionMethodText is a Basic CDS View that provides data about "Execution method text in BOP" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ABOPExecutionMethod, Language. It has 1 association to related views. Part of development package ATP_BOP_SETUP_VDM.

Data Sources (1)

SourceAliasJoin Type
dd07t txt from

Associations (1)

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

Annotations (9)

NameValueLevelField
EndUserText.label Execution method text in BOP view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ABOPExecutionMethod view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Analytics.technicalName IABOPEXECMTDTXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ABOPExecutionMethod dd07t domvalue_l
KEY Language
ABOPExecutionMethodText dd07t ddtext
_Language _Language
@EndUserText.label: 'Execution method text in BOP'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //#CHECK


@ObjectModel: {
    representativeKey: 'ABOPExecutionMethod',
    dataCategory: #TEXT,
    usageType: {
      serviceQuality: #B,
      sizeCategory: #L,
      dataClass: #CUSTOMIZING
    }
}
@Analytics.technicalName: 'IABOPEXECMTDTXT'

//@Analytics: { dataExtraction.enabled: true }


define view entity I_ABOPExecutionMethodText
  as select from dd07t as txt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key txt.domvalue_l                                                  as ABOPExecutionMethod,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(txt.ddlanguage as spras)                                   as Language,
      @Semantics.text: true
      txt.ddtext                                                      as ABOPExecutionMethodText,

      // Associations

      _Language
}
where
      txt.domname  = 'ATP_BOP_EXECUTION_OPTION'
  and txt.as4local = 'A';