I_REValuationStatusCockpitText
Status Text of a RE Contract Valuation
I_REValuationStatusCockpitText is a Basic CDS View that provides data about "Status Text of a RE Contract Valuation" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, REValuationStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IREVALCPSTATUST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Status Text of a RE Contract Valuation | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | REValuationStatus | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | REValuationStatus | domvalue_l | ||
| DomainValue | domvalue_l | |||
| REValuationStatusDesc | ddtext | |||
| _Language | _Language | |||
| _REValuationStatusCockpit | _REValuationStatusCockpit |
@AbapCatalog.sqlViewName: 'IREVALCPSTATUST'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Status Text of a RE Contract Valuation'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'REValuationStatus'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
// Created for the RE Valuation Cockpit App
// Special Text needed for the User
define view I_REValuationStatusCockpitText as select from dd07t
association to parent I_REValuationStatusCockpit as _REValuationStatusCockpit
on $projection.REValuationStatus = _REValuationStatusCockpit.REValuationStatus
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@ObjectModel.foreignKey.association: '_REValuationStatusCockpit'
@ObjectModel.text.element: ['REValuationStatus']
key domvalue_l as REValuationStatus,
@Consumption.hidden: true
domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
ddtext as REValuationStatusDesc,
_Language,
_REValuationStatusCockpit
}
where
domname = 'RECNVALSTATUSODATA'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_REVALUATIONSTATUSCOCKPIT"
],
"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