I_TndrgQuotationEvalResultText

DDL: I_TNDRGQUOTATIONEVALRESULTTEXT Type: view BASIC

Tendering Quotation Evaluation Result Text

I_TndrgQuotationEvalResultText is a Basic CDS View that provides data about "Tendering Quotation Evaluation Result Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields TndrgQuotationEvalResult, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
EndUserText.label Tendering Quotation Evaluation Result Text view
ObjectModel.representativeKey TndrgQuotationEvalResult view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ITENDQUOTEVALRET view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TndrgQuotationEvalResult
KEY Language ddlanguage
TndrgQuotationEvalResultDesc ddtext
_TndrgQuotationEvalResult _TndrgQuotationEvalResult
_Language _Language
@EndUserText:   {label:              'Tendering Quotation Evaluation Result Text'}
@ObjectModel:   {representativeKey:  'TndrgQuotationEvalResult',
                 dataCategory:       #TEXT,
                 usageType:          {serviceQuality: #A,
                                      sizeCategory:   #S,
                                      dataClass:      #CUSTOMIZING}}
@VDM:           {viewType:           #BASIC}
@AbapCatalog:   {compiler:           {compareFilter: true},
                 sqlViewName:        'ITENDQUOTEVALRET'}                             
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE

define view I_TndrgQuotationEvalResultText
as select from dd07t
association[0..1] to I_TndrgQuotationEvalResult as _TndrgQuotationEvalResult on $projection.TndrgQuotationEvalResult = _TndrgQuotationEvalResult.TndrgQuotationEvalResult
association[0..1] to I_Language                 as _Language                 on $projection.Language                 = _Language.Language
{
    @ObjectModel.foreignKey.association: '_TndrgQuotationEvalResult'
key cast(substring(domvalue_l, 1, 3) as /scmtms/tend_resp_eval_result preserving type) as TndrgQuotationEvalResult,
    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language'
key ddlanguage                                                                 as Language,
    @Semantics.text
    ddtext as TndrgQuotationEvalResultDesc,
    
    /* Associations */
    _TndrgQuotationEvalResult,
    _Language
} 
where domname = '/SCMTMS/TEND_RESP_EVAL_RESULT'
 and as4local = 'A'; 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_TNDRGQUOTATIONEVALRESULT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/