I_ServiceDocumentTypeStdVH

DDL: I_SERVICEDOCUMENTTYPESTDVH Type: view BASIC

Service Document Type Value Help

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

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentType I_ServiceDocumentType from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ISERVDOCTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ServiceDocumentType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Service Document Type Value Help view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType ServiceDocumentType
ServiceObjectType ServiceObjectType
_ServiceDocumentTypeText _ServiceDocumentTypeText
_ServiceObjectTypeText _ServiceObjectTypeText
@AbapCatalog:{
sqlViewName: 'ISERVDOCTYPEVH',
compiler.compareFilter: true,
preserveKey:true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC

@ObjectModel: {
   dataCategory: #VALUE_HELP,
   representativeKey: 'ServiceDocumentType',
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #B,
     sizeCategory:   #XL
   },
   supportedCapabilities: [#VALUE_HELP_PROVIDER]
}

@AccessControl: {
  authorizationCheck: #CHECK }
@EndUserText.label: 'Service Document Type Value Help'
@Search.searchable:true
@Consumption.ranked:true

define view I_ServiceDocumentTypeStdVH
  as select from I_ServiceDocumentType
{

      @Search.ranking: #HIGH
      @ObjectModel.text.association: '_ServiceDocumentTypeText'
  key ServiceDocumentType,
      @Search.ranking: #LOW
      ServiceObjectType,

      _ServiceDocumentTypeText,
      _ServiceObjectTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_BUSINESSOBJTYPETEXT",
"I_SERVICEDOCUMENTTYPETEXT"
],
"BASE":
[
"I_SERVICEDOCUMENTTYPE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/