FAC_BillingDocumentTypeVH

DDL: FAC_BILLINGDOCUMENTTYPEVH SQL: FACFKART Type: view Package: FINS_FI_ACC_VALIDATION

Data Source for Billing Type

FAC_BillingDocumentTypeVH is a CDS View that provides data about "Data Source for Billing Type" in SAP S/4HANA. It reads from 1 data source (I_BillingDocumentType) and exposes 2 fields with key field BillingDocumentType. Part of development package FINS_FI_ACC_VALIDATION.

Data Sources (1)

SourceAliasJoin Type
I_BillingDocumentType I_BillingDocumentType from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FACFKART view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Data Source for Billing Type view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BillingDocumentType BillingDocumentType
BillingDocumentTypeName
@AbapCatalog.sqlViewName: 'FACFKART'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Data Source for Billing Type'
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING ,
  serviceQuality: #A,
  sizeCategory: #S
  }
@Search.searchable: true  
define view FAC_BillingDocumentTypeVH
  as select from I_BillingDocumentType
{
      @ObjectModel.text.element:  [ 'BillingDocumentTypeName' ]
      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
  key BillingDocumentType,

      @Semantics.text: true
      @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.7 }
      _Text[1: Language = $session.system_language].BillingDocumentTypeName
}