I_APMRuleCharacteristicText
APM Rule Characteristic - Text
I_APMRuleCharacteristicText is a Basic CDS View that provides data about "APM Rule Characteristic - Text" in SAP S/4HANA. It reads from 2 data sources (dd04t, I_APMRuleCharacteristic) and exposes 4 fields with key fields APMRuleCharacteristicId, Language. It has 1 association to related views. Part of development package FSCM_PF_APM_RULESET.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| dd04t | dd04t | from |
| I_APMRuleCharacteristic | I_APMRuleCharacteristic | inner |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | APM Rule Characteristic - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | APMRuleCharacteristicId | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | APMRuleCharacteristicId | I_APMRuleCharacteristic | APMRuleCharacteristicId | |
| KEY | Language | dd04t | ddlanguage | |
| APMRuleCharcDescription | dd04t | scrtext_m | ||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'APM Rule Characteristic - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'APMRuleCharacteristicId'
@VDM.viewType: #BASIC
define view entity I_APMRuleCharacteristicText
as select from dd04t
inner join I_APMRuleCharacteristic on I_APMRuleCharacteristic.ABAPDataElement = dd04t.rollname
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
{
key I_APMRuleCharacteristic.APMRuleCharacteristicId,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key dd04t.ddlanguage as Language,
// @Semantics.text: true
// dd04t.ddtext as ABAPDataElementDescription,
//
// @Semantics.text: true
// dd04t.reptext as ABAPDataElementHeading,
//
// @Semantics.text: true
// dd04t.scrtext_s as ABAPShortFieldLabel,
@Semantics.text: true
dd04t.scrtext_m as APMRuleCharcDescription,
// @Semantics.text: true
// dd04t.scrtext_l as ABAPLongFieldLabel,
_Language
}
where
dd04t.as4local = 'A'
and dd04t.as4vers = '0000'
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