I_CADocumentTypeVH

DDL: I_CADOCUMENTTYPEVH SQL: ICADOCTYPEVH Type: view COMPOSITE Package: ODATA_O2C_FICA_BPITEM_TRANSFER

Document Type

I_CADocumentTypeVH is a Composite CDS View that provides data about "Document Type" in SAP S/4HANA. It reads from 1 data source (I_CADocumentType) and exposes 3 fields with key fields CADocumentType, CAApplicationArea. Part of development package ODATA_O2C_FICA_BPITEM_TRANSFER.

Data Sources (1)

SourceAliasJoin Type
I_CADocumentType I_CADocumentType from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICADOCTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey CADocumentType view
Search.searchable true view
EndUserText.label Document Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CADocumentType CADocumentType
KEY CAApplicationArea CAApplicationArea
CADocumentTypeName
@AbapCatalog.sqlViewName: 'ICADOCTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
//@ObjectModel.resultSet.sizeCategory: #XS

@ObjectModel.representativeKey: 'CADocumentType'
@Search.searchable: true
@EndUserText.label: 'Document Type'
define view I_CADocumentTypeVH as select from I_CADocumentType {
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
      @ObjectModel.text.element: 'CADocumentTypeName'
  key CADocumentType,
  @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
  key CAApplicationArea,
      @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
      @Semantics.text: true
      _Text[1:Language = $session.system_language].CADocumentTypeName
}