I_REValuationStatusText

DDL: I_REVALUATIONSTATUSTEXT SQL: IREVALSTATUST Type: view BASIC

Text of the Status of a Real Estate Contract Valuation

I_REValuationStatusText is a Basic CDS View that provides data about "Text of the Status of a Real Estate 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)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IREVALSTATUST view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Text of the Status of a Real Estate 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)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY REValuationStatus
DomainValue domvalue_l
REValuationStatusDesc ddtext
_Language _Language
_REValuationStatus _REValuationStatus
@AbapCatalog.sqlViewName: 'IREVALSTATUST'
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Text of the Status of a Real Estate 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

define view I_REValuationStatusText as select from dd07t
association to parent I_REValuationStatus as _REValuationStatus
    on $projection.REValuationStatus = _REValuationStatus.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: '_REValuationStatus'
    @ObjectModel.text.element: ['REValuationStatus']     
    key cast(domvalue_l as recestatusevaluation ) as REValuationStatus,                                  
//    key      case when domvalue_l = ''  then 'I'

//    else case when domvalue_l = 'C' then 'C'  end end   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,
    _REValuationStatus
}
where
      domname  = 'RECESTATUSEVALUATION'
  and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_REVALUATIONSTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/