A_ServiceQuotationItemText

DDL: A_SERVICEQUOTATIONITEMTEXT Type: view COMPOSITE

Text of Service Quotation Item

A_ServiceQuotationItemText is a Composite CDS View that provides data about "Text of Service Quotation Item" in SAP S/4HANA. It reads from 1 data source (P_ServiceDocumentItemText) and exposes 6 fields with key fields ServiceQuotation, ServiceQuotationItem, Language, LongTextID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_ServiceDocumentItemText P_ServiceDocumentItemText from

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceQuotation _ServiceQuotation $projection.ServiceQuotation = _ServiceQuotation.ServiceQuotation

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Text of Service Quotation Item view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASRVQTANITMTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.preserveKey true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ServiceQuotation ServiceQuotationItemText ServiceDocument
KEY ServiceQuotationItem ServiceQuotationItemText ServiceDocumentItem
KEY Language Language
KEY LongTextID LongTextID
LongText LongText
_ServiceQuotation _ServiceQuotation
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Text of Service Quotation Item'
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
  sqlViewName: 'ASRVQTANITMTEXT',
  compiler.compareFilter: true
}
@AccessControl: {
  authorizationCheck: #CHECK,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
   createEnabled: true,
   updateEnabled: true,
   deleteEnabled: true,
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #C,
     sizeCategory:   #L
   }
}
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.preserveKey:true 

define view A_ServiceQuotationItemText
  as select from P_ServiceDocumentItemText( P_SAPClient : $session.client ) as ServiceQuotationItemText

  association [1] to A_ServiceQuotation as _ServiceQuotation on $projection.ServiceQuotation = _ServiceQuotation.ServiceQuotation
  //   inner join   I_ServiceDocument                                      as ServiceDocument on ServiceDocument.ServiceDocumentUUID = ServiceDocumentText.ServiceDocumentUUID

{

  key ServiceQuotationItemText.ServiceDocument     as ServiceQuotation,
  key ServiceQuotationItemText.ServiceDocumentItem as ServiceQuotationItem,
  key Language,
  key LongTextID,
      @ObjectModel.readOnly: true //The transient element 'LONGTEXT' of the CDS view 'A_SERVICEQUOTATIONTEXT' is Read-Only

      @ObjectModel.virtualElement
      @ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_CRMS4_API_ODATA_TEXT'
      LongText,

      //Associations

      _ServiceQuotation

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[],
"ASSOCIATED":
[
"A_SERVICEQUOTATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/