I_RETermType

DDL: I_RETERMTYPE SQL: IRETERMTYPE Type: view BASIC

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)

SourceAliasJoin Type
tivtmtermtype tivtmtermtype from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_REObjectType _REObjectType $projection.RealEstateObjectType = _REObjectType.RealEstateObjectType
[0..*] I_RETermTypeText _Text $projection.RealEstateObjectType = _Text.RealEstateObjectType and $projection.RETermType = _Text.RETermType

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/