I_ACCOUNTINGDOCUMENTTYPETEXT
Accounting Document Type - Text
I_ACCOUNTINGDOCUMENTTYPETEXT is a CDS View in S/4HANA. Accounting Document Type - Text. It contains 1 fields. 3 CDS views read from this table.
CDS Views using this table (3)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_NL_SAFTBasicElmntMasterData | view | inner | CONSUMPTION | SAF-T NL Basics Elements Master Data |
| I_CntrlInvcMgmtAcctgDocType | view | from | BASIC | Accounting Document Type for Import |
| P_PaymentRcptRelatedADocType | view | inner | TRANSACTIONAL | Payment Receipt Related Actg Doc Type |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| AccountingDocumentTypeName | AccountingDocumentTypeName,NL_BasicElementMasterDataDesc | 2 |
@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
};