I_RETermType
Term Type
I_RETermType is a Basic CDS View (Dimension) that provides data about "Term Type" in SAP S/4HANA. It reads from 1 data source (tivtmtermtype) and exposes 5 fields with key fields RealEstateObjectType, RETermType. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tivtmtermtype | tivtmtermtype | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_REObjectType | _REObjectType | $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType |
| [0..*] | I_RETermTypeText | _Text | $projection.RealEstateObjectType = _Text.RealEstateObjectType and $projection.RETermType = _Text.RETermType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRETERMTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Term Type | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | RETermType | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RealEstateObjectType | objtype | ||
| KEY | RETermType | termtype | ||
| RETermCategory | termcate | |||
| _Text | _Text | |||
| _REObjectType | _REObjectType |
@AbapCatalog.sqlViewName: 'IRETERMTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Term Type'
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.representativeKey: 'RETermType'
@ObjectModel.semanticKey: [ 'RETermType', 'RealEstateObjectType' ]
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
define view I_RETermType
as select from tivtmtermtype
association [1..1] to I_REObjectType as _REObjectType on $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType
association [0..*] to I_RETermTypeText as _Text on $projection.RealEstateObjectType = _Text.RealEstateObjectType
and $projection.RETermType = _Text.RETermType
{
@ObjectModel.foreignKey.association: '_REObjectType'
key objtype as RealEstateObjectType,
@ObjectModel.text.association: '_Text'
key termtype as RETermType,
termcate as RETermCategory,
_Text,
_REObjectType
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TIVTMTERMTYPE"
],
"ASSOCIATED":
[
"I_REOBJECTTYPE",
"I_RETERMTYPETEXT"
],
"BASE":
[],
"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