I_PLANEXPLOSIONTEXT

CDS View

Plan Explosion text view

I_PLANEXPLOSIONTEXT is a CDS View in S/4HANA. Plan Explosion text view. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_Planexplosiontemptext view from CONSUMPTION Plan Explosion text view
@AbapCatalog.sqlViewName: 'IPLANEXPLOSNTEXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@ObjectModel.representativeKey: 'PlanExplosionType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #META
@EndUserText.label: 'Plan Explosion text view'
define view I_PlanExplosionText
  as select from dd07t
  association [1..1] to I_PlanExplosion as _PlanExplosionType on $projection.PlanExplosionType = _PlanExplosionType.PlanExplosionType
  association [0..1] to I_Language      as _Language          on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast( dd07t.ddlanguage as spras preserving type ) as Language,
      @ObjectModel.foreignKey.association: '_PlanExplosionType'
      @ObjectModel.text.element: ['PlanExplosionTypeDesc']
  key cast (dd07t.domvalue_l as /sapapo/whatbom )       as PlanExplosionType,
      @Consumption.hidden: true
      dd07t.domvalue_l                                  as DomainValue,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true

      cast (ddtext as val_text preserving type )        as PlanExplosionTypeDesc,
      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT,
                                      #TO_COMPOSITION_ROOT]

      _PlanExplosionType,
      _Language
}
where
  domname = '/SAPAPO/WHATBOM'