I_RACatchUpDisplayModeText
Description of Revenue Catch-up Display Mode
I_RACatchUpDisplayModeText is a Basic CDS View that provides data about "Description of Revenue Catch-up Display Mode" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, RAItemType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRACUPDSPMODET | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Description of Revenue Catch-up Display Mode | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | RAItemType | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | dd07t | ddlanguage | |
| KEY | RAItemType | |||
| RAItemTypeName | ddtext | |||
| _Language | _Language | |||
| _RACatchUpDisplayMode | _RACatchUpDisplayMode |
@AbapCatalog.sqlViewName: 'IRACUPDSPMODET'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Description of Revenue Catch-up Display Mode'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RAItemType'
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
define view I_RACatchUpDisplayModeText
as select from dd07t
association to parent I_RACatchUpDisplayMode as _RACatchUpDisplayMode
on $projection.RAItemType = _RACatchUpDisplayMode.RAItemType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@ObjectModel.foreignKey.association: '_RACatchUpDisplayMode'
key cast(domvalue_l as farr_rev_catchup_displaymode) as RAItemType,
@Semantics.text: true
ddtext as RAItemTypeName,
_Language,
_RACatchUpDisplayMode
}
where dd07t.domname = 'FARR_REV_CATCHUP_DISPLAYMODE'
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RACATCHUPDISPLAYMODE"
],
"BASE":
[],
"ANNO_REF":
[],
"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