I_ProcMonDurnUnitOfMeasure
Process Observer: Duration Unit of Measure
I_ProcMonDurnUnitOfMeasure is a Composite CDS View that provides data about "Process Observer: Duration Unit of Measure" in SAP S/4HANA. It reads from 1 data source (I_UnitOfMeasure) and exposes 3 fields with key field UnitOfMeasure.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_UnitOfMeasure | _UnitOfMeasure | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPOCDURNMEAS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Process Observer: Duration Unit of Measure | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | A | view | |
| ObjectModel.usageType.sizeCategory | L | view | |
| ObjectModel.usageType.dataClass | CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | UnitOfMeasure | I_UnitOfMeasure | UnitOfMeasure | |
| UnitOfMeasureendasDurationUnit | ||||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IPOCDURNMEAS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED //okay
@EndUserText.label: 'Process Observer: Duration Unit of Measure'
@VDM.viewType: #COMPOSITE
//@VDM.private: true
@ObjectModel.usageType.serviceQuality: 'A'
@ObjectModel.usageType.sizeCategory: 'L'
@ObjectModel.usageType.dataClass: 'CUSTOMIZING'
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ProcMonDurnUnitOfMeasure
as //old: Z_I_ProcMonDurnUnitOfMeasure
select from I_UnitOfMeasure as _UnitOfMeasure
{
key _UnitOfMeasure.UnitOfMeasure,
// case _UnitOfMeasure.UnitOfMeasure
// when 'MIN' then 'M'
// when 'TAG' then 'D'
// else _UnitOfMeasure.UnitOfMeasure
// end as ProcObsvrIntDurationUnit,
case _UnitOfMeasure.UnitOfMeasure
when 'MIN' then 'M'
when 'TAG' then 'D'
else _UnitOfMeasure.UnitOfMeasure
end as DurationUnit,
_Text
// case KPI_log.kpi_dur_unit // S,M,H,D
// when 'M' then 'MIN'
// when 'D' then 'TAG'
// else KPI_log.kpi_dur_unit //S,H
// end as DurationUnit,
// _UnitOfMeasure._Text[1:Language=$session.system_language],
}
where
_UnitOfMeasure.UnitOfMeasureDimension = 'TIME'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_UNITOFMEASURE"
],
"ASSOCIATED":
[
"I_UNITOFMEASURETEXT"
],
"BASE":
[
"I_UNITOFMEASURE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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