I_FreightQuotationStatus

DDL: I_FREIGHTQUOTATIONSTATUS Type: view BASIC

Freight Quotation Status

I_FreightQuotationStatus is a Basic CDS View (Dimension) that provides data about "Freight Quotation Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field FreightQuotationStatus.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (12)

NameValueLevelField
EndUserText.label Freight Quotation Status view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey FreightQuotationStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IFREQUOTSTATUS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FreightQuotationStatus
_Text _Text
@EndUserText:   {label:              'Freight Quotation Status'}
@Analytics:     {dataCategory:       #DIMENSION, 
                 dataExtraction:     {enabled: true}}
@ObjectModel:   {representativeKey:  'FreightQuotationStatus',
                 usageType:          {serviceQuality: #A,
                                      sizeCategory:   #S,
                                      dataClass:      #MASTER}}
@VDM:           {viewType:           #BASIC}
@AbapCatalog:   {compiler:           {compareFilter: true},
                 sqlViewName:        'IFREQUOTSTATUS'}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE

define view I_FreightQuotationStatus
as select from dd07l
association[0..*] to I_FreightQuotationStatusText as _Text on $projection.FreightQuotationStatus = _Text.FreightQuotationStatus
{
    @ObjectModel.text.association: '_Text'
key cast(substring(domvalue_l, 1, 2) as /scmtms/tend_resp_lifecyc_stat preserving type) as FreightQuotationStatus,

    /* Associations */
    _Text
} 
where domname = '/SCMTMS/TEND_RESP_LIFECYC_STAT'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_FREIGHTQUOTATIONSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/