C_PurchasingDocTypeValueHelp

DDL: C_PURCHASINGDOCTYPEVALUEHELP SQL: CPURDOCTYPE_VH Type: view CONSUMPTION

Purchasing Doc Type Value Help

C_PurchasingDocTypeValueHelp is a Consumption CDS View that provides data about "Purchasing Doc Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentType) and exposes 3 fields with key fields PurchasingDocumentType, PurchasingDocumentCategory.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentType I_PurchasingDocumentType from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CPURDOCTYPE_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchasing Doc Type Value Help view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #NONE view
Search.searchable true view
ObjectModel.semanticKey PurchasingDocumentType view
ObjectModel.representativeKey PurchasingDocumentType view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentType PurchasingDocumentType
KEY PurchasingDocumentCategory PurchasingDocumentCategory
PurchasingDocumentTypeName
@AbapCatalog.sqlViewName: 'CPURDOCTYPE_VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Purchasing Doc Type Value Help'
@VDM.viewType: #CONSUMPTION
@VDM.lifecycle.contract.type : #NONE
@Search.searchable: true
@ObjectModel.semanticKey: 'PurchasingDocumentType'
@ObjectModel.representativeKey: 'PurchasingDocumentType'
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MIXED


define view C_PurchasingDocTypeValueHelp
  as select from I_PurchasingDocumentType
{
      @ObjectModel.text.element:  [ 'PurchasingDocumentTypeName' ]
      key PurchasingDocumentType,
      @Search: { defaultSearchElement: true, ranking: #HIGH }
      key PurchasingDocumentCategory,
      
      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
      _Text[1: Language = $session.system_language].PurchasingDocumentTypeName
}