I_MaintPlanLgclOptrText

DDL: I_MAINTPLANLGCLOPTRTEXT SQL: IMAINTPLANLOGOP Type: view BASIC

Maintenance Plan Logical Operator Text

I_MaintPlanLgclOptrText is a Basic CDS View that provides data about "Maintenance Plan Logical Operator Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields LogicalOperator, 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 (12)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IMAINTPLANLOGOP view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Maintenance Plan Logical Operator Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey LogicalOperator view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LogicalOperator
KEY Language dd07t ddlanguage
MaintPlanLogicalOperatorText dd07t ddtext
_Language _Language
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'IMAINTPLANLOGOP'
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Maintenance Plan Logical Operator Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LogicalOperator'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC

define view I_MaintPlanLgclOptrText

  as select from dd07t as dd07t

  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element: 'MaintPlanLogicalOperatorText'
  key cast(dd07t.domvalue_l as eams_mplan_logop) as LogicalOperator,

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

      @Semantics.text: true
      dd07t.ddtext                    as MaintPlanLogicalOperatorText,

      // Associations

      _Language
}
where
      dd07t.domname  = 'EAMS_MPLAN_LOGOP'
  and dd07t.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/