I_AcctgServiceDocumentTypeVH

DDL: I_ACCTGSERVICEDOCUMENTTYPEVH SQL: IFIACSRVDOCTYPVH Type: view COMPOSITE

Service Document Type Value Help

I_AcctgServiceDocumentTypeVH is a Composite CDS View that provides data about "Service Document Type Value Help" in SAP S/4HANA. It reads from 1 data source (P_AcctgServiceDocumentItem) and exposes 2 fields with key field ServiceDocumentType.

Data Sources (1)

SourceAliasJoin Type
P_AcctgServiceDocumentItem P_AcctgServiceDocumentItem from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFIACSRVDOCTYPVH 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 Document Type Value Help view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType ServiceDocumentType
ServiceDocumentTypeName ServiceDocumentTypeName
@AbapCatalog.sqlViewName: 'IFIACSRVDOCTYPVH'
@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 Document Type Value Help'

define view I_AcctgServiceDocumentTypeVH 
  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
}
group by ServiceDocumentType, ServiceDocumentTypeName
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_ACCTGSERVICEDOCUMENTITEM"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/