I_REConditionAttributeText

DDL: I_RECONDITIONATTRIBUTETEXT SQL: IRECNDNATTRT Type: view BASIC

Condition Attribute Text

I_REConditionAttributeText is a Basic CDS View that provides data about "Condition Attribute Text" in SAP S/4HANA. It reads from 1 data source (tivcdpropt) and exposes 5 fields with key fields Language, REConditionAttribute. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tivcdpropt tivcdpropt from

Associations (2)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IRECNDNATTRT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Condition Attribute Text view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY REConditionAttribute condprop
REConditionAttributeName xcondprop
_REConditionAttribute _REConditionAttribute
_Language _Language
@AbapCatalog.sqlViewName: 'IRECNDNATTRT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Condition Attribute Text'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.dataCategory:#TEXT
@ObjectModel.representativeKey: ['REConditionAttribute']
@ObjectModel.semanticKey: ['REConditionAttribute']
@VDM.viewType:#BASIC
define view I_REConditionAttributeText 
    as select from tivcdpropt
    association [0..1] to I_REConditionAttribute    as _REConditionAttribute  on $projection.REConditionAttribute = _REConditionAttribute.REConditionAttribute
    association [0..1] to I_Language                as _Language            on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key spras            as Language,
      @ObjectModel.foreignKey.association: '_REConditionAttribute'
  key condprop  as REConditionAttribute,
      @Semantics.text: true
      xcondprop as REConditionAttributeName,

      _REConditionAttribute,
      _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TIVCDPROPT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RECONDITIONATTRIBUTE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/