I_RETermTypeText
Real Estate Term Type - Text
I_RETermTypeText is a Basic CDS View that provides data about "Real Estate Term Type - Text" in SAP S/4HANA. It reads from 1 data source (tivtmtermtypet) and exposes 7 fields with key fields Language, RealEstateObjectType, RETermType. It has 3 associations to related views. Part of development package VDM_RE_TM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tivtmtermtypet | tivtmtermtypet | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_RETermType | _RETermType | $projection.RETermType = _RETermType.RETermType and $projection.RealEstateObjectType = _RETermType.RealEstateObjectType |
| [1..1] | I_REObjectType | _REObjectType | $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Real Estate Term Type - Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | RETermType | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.sapObjectNodeType.name | RealEstateTermTypeText | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | RealEstateObjectType | objtype | ||
| KEY | RETermType | termtype | ||
| RETermTypeName | xtermtype | |||
| _Language | _Language | |||
| _RETermType | _RETermType | |||
| _REObjectType | _REObjectType |
//@AbapCatalog.sqlViewName: 'IRETERMTYPETEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Real Estate Term Type - Text'
@Analytics: {
dataExtraction.enabled: true
}
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
dataCategory: #TEXT,
representativeKey: 'RETermType',
semanticKey: ['RETermType'],
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
#EXTRACTION_DATA_SOURCE],
sapObjectNodeType.name: 'RealEstateTermTypeText'
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
define view entity I_RETermTypeText
as select from tivtmtermtypet
association [0..1] to I_RETermType as _RETermType on $projection.RETermType = _RETermType.RETermType
and $projection.RealEstateObjectType = _RETermType.RealEstateObjectType
association [1..1] to I_REObjectType as _REObjectType on $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
@ObjectModel.foreignKey.association: '_REObjectType'
key objtype as RealEstateObjectType,
@ObjectModel.foreignKey.association: '_RETermType'
key termtype as RETermType,
@Semantics.text: true
xtermtype as RETermTypeName,
_Language,
_RETermType,
_REObjectType
}
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