I_AcctgServiceDocumentVH

DDL: I_ACCTGSERVICEDOCUMENTVH SQL: IFIACSRVDOCVH Type: view COMPOSITE

Service Document ID Value Help

I_AcctgServiceDocumentVH is a Composite CDS View that provides data about "Service Document ID Value Help" in SAP S/4HANA. It reads from 1 data source (P_AcctgServiceDocumentItem) and exposes 6 fields with key fields ServiceDocument, ServiceDocumentType.

Data Sources (1)

SourceAliasJoin Type
P_AcctgServiceDocumentItem P_AcctgServiceDocumentItem from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFIACSRVDOCVH view
ObjectModel.representativeKey ServiceDocument view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL 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 ID Value Help view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocument ServiceDocument
KEY ServiceDocumentType ServiceDocumentType
ServiceDocumentDescription ServiceDocumentDescription
ServiceDocumentTypeName ServiceDocumentTypeName
CompanyCode CompanyCode
ProfitCenter ProfitCenter
@AbapCatalog.sqlViewName: 'IFIACSRVDOCVH'
@ObjectModel.representativeKey: 'ServiceDocument'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #TRANSACTIONAL,
  serviceQuality: #C,
  sizeCategory: #L
}
@ObjectModel.semanticKey: ['ServiceDocument', '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 ID Value Help'

define view I_AcctgServiceDocumentVH
  as select from P_AcctgServiceDocumentItem 

{
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
  key ServiceDocument,
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
  key ServiceDocumentType,
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      ServiceDocumentDescription,
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      ServiceDocumentTypeName,
      CompanyCode,
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
      ProfitCenter
}
group by ServiceDocumentType, ServiceDocument, ServiceDocumentDescription, ServiceDocumentTypeName, CompanyCode, ProfitCenter
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_ACCTGSERVICEDOCUMENTITEM"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/