I_DFS_MeasureAttributes
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)
| Source | Alias | Join Type |
|---|---|---|
| /isdfps/orgm | _Attributes | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_DFS_MeasureType | _MeasureType | $projection.DfsOrglMeasureType = _MeasureType.DfsOrglMeasureType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA