I_ServiceQuotationStatusText

DDL: I_SERVICEQUOTATIONSTATUSTEXT Type: view BASIC

Service Quotation Status Text

I_ServiceQuotationStatusText is a Basic CDS View that provides data about "Service Quotation Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields ServiceQuotationStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ServiceQuotationStatus _ServiceQuotationStatus $projection.ServiceQuotationStatus = _ServiceQuotationStatus.ServiceQuotationStatus
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
EndUserText.label Service Quotation Status Text view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISERVQTANSTATTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ServiceQuotationStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ServiceQuotationStatus
KEY Language ddlanguage
DomainValue dd07t domvalue_l
ServiceQuotationStatusName
_ServiceQuotationStatus _ServiceQuotationStatus
_Language _Language
@EndUserText.label: 'Service Quotation Status Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
  sqlViewName: 'ISERVQTANSTATTXT',
  compiler.compareFilter: true,
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
   dataCategory: #TEXT,
   representativeKey: 'ServiceQuotationStatus',
   usageType: {
     dataClass:      #META,
     serviceQuality: #B,
     sizeCategory:   #S
   }
}

@Metadata.ignorePropagatedAnnotations: true

@Search.searchable: true

define view I_ServiceQuotationStatusText
  as select from dd07t 
  association [1..1] to I_ServiceQuotationStatus as _ServiceQuotationStatus on $projection.ServiceQuotationStatus = _ServiceQuotationStatus.ServiceQuotationStatus                                
  association [1..1] to I_Language               as _Language               on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ServiceQuotationStatus'
      @ObjectModel.text.element: ['ServiceQuotationStatusName']
  key cast(domvalue_l as crms4_qtan_stat_lc)                  as ServiceQuotationStatus,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                              as Language,
      @Consumption.hidden: true
      dd07t.domvalue_l                                        as DomainValue,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast(ddtext as crms4_qtan_stat_lc_name preserving type) as ServiceQuotationStatusName,

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT,
                                      #TO_COMPOSITION_ROOT]
      _ServiceQuotationStatus,
      _Language
}
where
      domname  = 'CRMS4_QTAN_STAT_LC'      
  and as4local = 'A'
  and as4vers  = '0000'