I_MeterReadingStatus

DDL: I_METERREADINGSTATUS SQL: IEMTRRDNGSTS Type: view BASIC

Meter Reading Status

I_MeterReadingStatus is a Basic CDS View (Dimension) that provides data about "Meter Reading Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MeterReadingStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MeterReadingStatusText _Text $projection.MeterReadingStatus = _Text.MeterReadingStatus

Annotations (16)

NameValueLevelField
EndUserText.label Meter Reading Status view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEMTRRDNGSTS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MeterReadingStatus view
ObjectModel.sapObjectNodeType.name UtilsMeterReadingStatus view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MeterReadingStatus
_Text _Text
@EndUserText.label: 'Meter Reading Status'
@Analytics: { dataCategory: #DIMENSION,
              internalName:#LOCAL,
              dataExtraction: { enabled: true } }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IEMTRRDNGSTS'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter:true
//@AbapCatalog.preserveKey:true

@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { usageType: { dataClass: #META,
                             serviceQuality: #A,
                             sizeCategory: #L },
                supportedCapabilities: [ #SQL_DATA_SOURCE, #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE ],
                modelingPattern: #ANALYTICAL_DIMENSION,
                representativeKey: 'MeterReadingStatus',
                sapObjectNodeType: { name: 'UtilsMeterReadingStatus' }
}




define view I_MeterReadingStatus
  as select from dd07l
  association [0..*] to I_MeterReadingStatusText as _Text on $projection.MeterReadingStatus = _Text.MeterReadingStatus
{
      @ObjectModel.text.association: '_Text'
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as ablstat ) as MeterReadingStatus,

      /* Associations */
      _Text
}
where
      dd07l.domname  = 'ABLSTAT'
  and dd07l.as4local = 'A'