I_AccountingDocumentTypeText

DDL: I_ACCOUNTINGDOCUMENTTYPETEXT SQL: IFIACCDOCTYPET Type: view BASIC Package: FINS_JOURNAL_ENTRY_TYPE_VDM

Accounting Document Type - Text

I_AccountingDocumentTypeText is a Basic CDS View that provides data about "Accounting Document Type - Text" in SAP S/4HANA. It reads from 1 data source (t003t) and exposes 5 fields with key fields AccountingDocumentType, Language. It has 2 associations to related views. Part of development package FINS_JOURNAL_ENTRY_TYPE_VDM.

Data Sources (1)

SourceAliasJoin Type
t003t t003t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_AccountingDocumentType _DocumentType $projection.AccountingDocumentType = _DocumentType.AccountingDocumentType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
EndUserText.label Accounting Document Type - Text view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey AccountingDocumentType view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName IFIACCDOCTYPET view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
Search.searchable true view
AbapCatalog.preserveKey true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountingDocumentType
KEY Language spras
AccountingDocumentTypeName
_DocumentType _DocumentType
_Language _Language
@EndUserText.label: 'Accounting Document Type - Text'
@VDM.viewType: #BASIC
@Analytics:{
    dataExtraction: {
        enabled: true,
        delta.changeDataCapture: {
        automatic: true
        }
    }
}
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AccountingDocumentType'
@AccessControl.authorizationCheck: #CHECK
@AbapCatalog.sqlViewName: 'IFIACCDOCTYPET'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #A,
  sizeCategory: #S
}
@AbapCatalog.buffering:{
  status: #ACTIVE,
  type: #GENERIC,
  numberOfKeyFields: 1
}
@Search.searchable: true
@AbapCatalog.preserveKey:true
@ObjectModel.supportedCapabilities:[#CDS_MODELING_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT,#EXTRACTION_DATA_SOURCE]
define view I_AccountingDocumentTypeText as select from t003t

  association [1..1] to I_AccountingDocumentType as _DocumentType on $projection.AccountingDocumentType = _DocumentType.AccountingDocumentType
  
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
 
  key cast ( blart as farp_blart preserving type ) as AccountingDocumentType,

  @Semantics.language
  @ObjectModel.foreignKey.association: '_Language'
  key spras as Language,

  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  @Semantics.text
  cast ( ltext as farp_ltext_003t preserving type ) as AccountingDocumentTypeName,
  
  _DocumentType,
  _Language
    
};