I_DRFFILTERSTATUS

DDL: I_DRFFILTERSTATUS Type: view_entity

DRF Filter Status

I_DRFFILTERSTATUS is a CDS View that provides data about "DRF Filter Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field DRFFilterStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DRFFILTERSTATUSTXT _DRFFILTERSTATUSTXT

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label DRF Filter Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DRFFilterStatus
DomainValue domvalue_l
_DRFFILTERSTATUSTXT _DRFFILTERSTATUSTXT
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'DRF Filter Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
define view entity I_DRFFILTERSTATUS 
  as select from dd07l
  composition [0..*] of I_DRFFILTERSTATUSTXT as _DRFFILTERSTATUSTXT
{
      @Consumption.filter.hidden: true
      @UI.textArrangement: #TEXT_ONLY
  key cast( domvalue_l as drf_filter_status ) as DRFFilterStatus,
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @ObjectModel.readOnly: true
      domvalue_l                                        as DomainValue,

      case
        when domvalue_l = '00' then cast( 2 as int4 )
        when domvalue_l = '10' then cast( 3 as int4 )
        when domvalue_l <> '00' or domvalue_l <> '10' then cast( 0 as int4 )
      end                                               as DRFFilterStatusCritlty,

      @Consumption.filter.hidden: true
      _DRFFILTERSTATUSTXT

}
where
      domname  = 'DRF_FILTER_STATUS'
  and as4local = 'A'
  and as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_DRFFILTERSTATUSTXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/