I_REConditionTypeText

DDL: I_RECONDITIONTYPETEXT SQL: IRECNDNTYPET Type: view_entity BASIC Package: VDM_RE_CD

Real Estate Condition Type - Text

I_REConditionTypeText is a Basic CDS View that provides data about "Real Estate Condition Type - Text" in SAP S/4HANA. It reads from 1 data source (tivcdcondtypet) and exposes 5 fields with key fields Language, REConditionType. It has 1 association to related views. Part of development package VDM_RE_CD.

Data Sources (1)

SourceAliasJoin Type
tivcdcondtypet tivcdcondtypet from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey REConditionType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name RealEstateConditionTypeText view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Real Estate Condition Type - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY REConditionType condtype
REConditionTypeName xcondtypel
_REConditionType _REConditionType
_Language _Language
//@AbapCatalog.sqlViewName: 'IRECNDNTYPET'

@AccessControl.authorizationCheck: #NOT_REQUIRED

@Analytics.dataExtraction.enabled: true

@ObjectModel: {
                usageType: { 
                             dataClass: #CUSTOMIZING,
                             serviceQuality: #A,
                             sizeCategory: #M
                            },
                dataCategory: #TEXT,
                representativeKey: 'REConditionType',
                semanticKey: ['REConditionType'],
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
                supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT,
                                         #CDS_MODELING_DATA_SOURCE,
                                         #CDS_MODELING_ASSOCIATION_TARGET,
                                         #SQL_DATA_SOURCE,
                                         #EXTRACTION_DATA_SOURCE,
                                         #SEARCHABLE_ENTITY ],
                sapObjectNodeType.name: 'RealEstateConditionTypeText'
}
                                     
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM.viewType:#BASIC
@EndUserText.label: 'Real Estate Condition Type - Text'
define view entity I_REConditionTypeText 
    as select from tivcdcondtypet
    association  to parent I_REConditionType     as _REConditionType       on $projection.REConditionType = _REConditionType.REConditionType
    association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key spras            as Language,
      @ObjectModel.foreignKey.association: '_REConditionType'
  key condtype  as REConditionType,
      @Semantics.text: true
      @Search.fuzzinessThreshold: 0.8
      @Search.defaultSearchElement: true
      @Search.ranking: #LOW
      xcondtypel as REConditionTypeName,
      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _REConditionType,
      _Language
}