I_BusSolnQuotationItemText

DDL: I_BUSSOLNQUOTATIONITEMTEXT Type: view BASIC

Solution Quotation Item Text

I_BusSolnQuotationItemText is a Basic CDS View that provides data about "Solution Quotation Item Text" in SAP S/4HANA. It reads from 2 data sources (crms4d_serv_i, stxh) and exposes 5 fields.

Data Sources (2)

SourceAliasJoin Type
crms4d_serv_i crms4d_serv_i inner
stxh STXH from

Annotations (12)

NameValueLevelField
EndUserText.label Solution Quotation Item Text view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IBSQITEXT 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_ALLOWED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
ServiceDocument crms4d_serv_i object_id
ServiceDocumentItem crms4d_serv_i number_int
Language stxh tdspras
TextObjectType stxh tdid
PlainLongText
@EndUserText.label: 'Solution Quotation Item Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
  sqlViewName: 'IBSQITEXT',
  compiler.compareFilter: true,
  preserveKey: true
}

@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}

@AccessControl: {
  authorizationCheck: #NOT_ALLOWED,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}

@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #XL
   }
}
//@Analytics.dataCategory: #DIMENSION

@Metadata.ignorePropagatedAnnotations: true
define view I_BusSolnQuotationItemText
  as select from stxh          as STXH
    inner join   crms4d_serv_i as crms4d_serv_i on stxh.tdname = bintohex(
      crms4d_serv_i.item_guid
    )

{
  crms4d_serv_i.object_id                            as ServiceDocument,
  crms4d_serv_i.number_int                           as ServiceDocumentItem,
  stxh.tdspras                                       as Language,
  stxh.tdid                                          as TextObjectType,
  cast( '' as abap.char(150) )                       as PlainLongText
}
where
  crms4d_serv_i.objtype_h = 'BUS2000116'