I_DFS_MeasureAttributes

DDL: I_DFS_MEASUREATTRIBUTES SQL: IORGMATTR Type: view BASIC

Measure specific attributes

I_DFS_MeasureAttributes is a Basic CDS View that provides data about "Measure specific attributes" in SAP S/4HANA. It reads from 1 data source (/isdfps/orgm) and exposes 6 fields with key field DfsOrglMeasureUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/isdfps/orgm _Attributes from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_DFS_MeasureType _MeasureType $projection.DfsOrglMeasureType = _MeasureType.DfsOrglMeasureType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IORGMATTR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Measure specific attributes view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey DfsOrglMeasureUUID view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY DfsOrglMeasureUUID case_guid
DfsOrglMeasureHeaderType orgm_head_otype
DfsOrglMeasureHeaderID orgm_head
DfsOrglMeasureType orgm_type
DfsOrglMsrEffectivenessDate orgm_effect
_MeasureType _MeasureType
@AbapCatalog.sqlViewName: 'IORGMATTR'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Measure specific attributes'

@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.representativeKey: 'DfsOrglMeasureUUID'

@VDM.viewType: #BASIC

define view I_DFS_MeasureAttributes
  as select from /isdfps/orgm as _Attributes
  association [0..1] to I_DFS_MeasureType as _MeasureType on $projection.DfsOrglMeasureType = _MeasureType.DfsOrglMeasureType
{
  key case_guid       as DfsOrglMeasureUUID,
      orgm_head_otype as DfsOrglMeasureHeaderType,
      orgm_head       as DfsOrglMeasureHeaderID,
      orgm_type       as DfsOrglMeasureType,
      orgm_effect     as DfsOrglMsrEffectivenessDate,

      _MeasureType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/ISDFPS/ORGM"
],
"ASSOCIATED":
[
"I_DFS_MEASURETYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/