I_ServiceOrderDocumentTypeVH

DDL: I_SERVICEORDERDOCUMENTTYPEVH SQL: ISRVDOCTYPVH Type: view COMPOSITE Package: K_SERVICE_DOC_CORE

Service Order Document Type

I_ServiceOrderDocumentTypeVH is a Composite CDS View that provides data about "Service Order Document Type" in SAP S/4HANA. It reads from 1 data source (P_AcctgServiceDocumentItem) and exposes 2 fields with key field ServiceDocumentType. Part of development package K_SERVICE_DOC_CORE.

Data Sources (1)

SourceAliasJoin Type
P_AcctgServiceDocumentItem P_AcctgServiceDocumentItem from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISRVDOCTYPVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey ServiceDocumentType view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Service Order Document Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType ServiceDocumentType
ServiceDocumentTypeName ServiceDocumentTypeName
@AbapCatalog.sqlViewName: 'ISRVDOCTYPVH'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
@ObjectModel.representativeKey: 'ServiceDocumentType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #C,
  sizeCategory: #L
}
@ObjectModel.semanticKey: ['ServiceDocumentType']
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Search.searchable: true
@Consumption.ranked: true

@EndUserText.label: 'Service Order Document Type'

define view I_ServiceOrderDocumentTypeVH 
  as select from P_AcctgServiceDocumentItem 
  
{
      @ObjectModel.text.element: ['ServiceDocumentTypeName']
      @UI.textArrangement: #TEXT_LAST
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
  key ServiceDocumentType,
      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      ServiceDocumentTypeName
}
where ControllingObject like 'SV%'
group by ServiceDocumentType, ServiceDocumentTypeName