I_CntrbtScenTypeTxt

DDL: I_CNTRBTSCENTYPETXT Type: view BASIC

Contributing Scenario Type - Text

I_CntrbtScenTypeTxt is a Basic CDS View that provides data about "Contributing Scenario Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t ScenTypeText from

Associations (1)

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

Annotations (11)

NameValueLevelField
EndUserText.label Contributing Scenario Type - Text view
AbapCatalog.sqlViewName ICRRCSSTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey PCESScenarioType view

Fields (4)

KeyFieldSource TableSource FieldDescription
domvalue_l13asPCESScenarioType
ddlanguageassylanguasLanguage
ddtextasPCESScenarioTypeTxt
_Language _Language
@EndUserText.label: 'Contributing Scenario Type - Text'

@AbapCatalog:
{
  sqlViewName: 'ICRRCSSTXT',
  compiler.compareFilter: true
}

// authorization check not required as view only reads domain values

@AccessControl.authorizationCheck: #NOT_REQUIRED

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

@ObjectModel:
{
  --Data category
  dataCategory: #TEXT,
  --Performance annotation
  usageType:
  {
    dataClass: #META,
    serviceQuality: #B,
    sizeCategory: #S
  },
  --Representative Key
  representativeKey: 'PCESScenarioType'
}

define view I_CntrbtScenTypeTxt
  --Select data from domain value description table
  as select from dd07t as ScenTypeText

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain Value of Basic Data Status
  key substring(ScenTypeText.domvalue_l, 1, 3) as PCESScenarioType,

      --Language
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast(ScenTypeText.ddlanguage as sylangu) as Language,

      --language-dependent description of domain value
      @Semantics.text: true
      ScenTypeText.ddtext                      as PCESScenarioTypeTxt,

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