I_ServiceQuotationStatus

DDL: I_SERVICEQUOTATIONSTATUS Type: view BASIC

Service Quotation Status

I_ServiceQuotationStatus is a Basic CDS View that provides data about "Service Quotation Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ServiceQuotationStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_ServiceQuotationStatusText _ServiceQuotationStatusText $projection.ServiceQuotationStatus = _ServiceQuotationStatusText.ServiceQuotationStatus

Annotations (18)

NameValueLevelField
EndUserText.label Service Quotation Status view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISERVQTANSTATUS 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.representativeKey ServiceQuotationStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.compositionRoot true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Analytics.internalName #LOCAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceQuotationStatus
DomainValue domvalue_l
_ServiceQuotationStatusText _ServiceQuotationStatusText
@EndUserText.label: 'Service Quotation Status'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
  sqlViewName: 'ISERVQTANSTATUS',
  compiler.compareFilter: true,
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
   representativeKey: 'ServiceQuotationStatus',
   usageType: {
     dataClass:      #META,
     serviceQuality: #B,
     sizeCategory:   #S
   },
   compositionRoot: true,
   dataCategory: #VALUE_HELP,
   resultSet.sizeCategory: #XS   // UI renders code list as drop down listbox

}

@Metadata.ignorePropagatedAnnotations: true

@Search.searchable: true
@Analytics: {
    internalName: #LOCAL
}

define view I_ServiceQuotationStatus
  as select from dd07l
  association [1..*] to I_ServiceQuotationStatusText as _ServiceQuotationStatusText on $projection.ServiceQuotationStatus = _ServiceQuotationStatusText.ServiceQuotationStatus

{
      @ObjectModel.text.association: '_ServiceQuotationStatusText'
  key cast(domvalue_l as crms4_qtan_stat_lc) as ServiceQuotationStatus,      
      
      @Consumption.hidden:true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      domvalue_l                             as DomainValue,      

      @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
      _ServiceQuotationStatusText
}
where
      domname  = 'CRMS4_QTAN_STAT_LC'
  and as4local = 'A'
  and as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_SERVICEQUOTATIONSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/