I_PostingKeyText
Posting Key - Text
I_PostingKeyText is a Basic CDS View that provides data about "Posting Key - Text" in SAP S/4HANA. It reads from 1 data source (tbslt) and exposes 5 fields with key fields Language, PostingKey. It has 2 associations to related views. Part of development package FINS_POSTING_KEY_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tbslt | tbslt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_PostingKey | _PostingKey | $projection.PostingKey = _PostingKey.PostingKey |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.entityBuffer.definitionAllowed | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| EndUserText.label | Posting Key - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PostingKey | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | tbslt | spras | |
| KEY | PostingKey | |||
| PostingKeyName | ||||
| _PostingKey | _PostingKey | |||
| _Language | _Language |
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics:{
dataExtraction: {
enabled: true,
delta.changeDataCapture: {
mapping:
[
{
table: 'tbslt',
role: #MAIN,
viewElement: ['Language', 'PostingKey'],
tableElement: ['spras', 'bschl'],
filter: [ { operator: #EQ, tableElement: 'umskz', value: '' } ]
}
]
}
}
}
@EndUserText.label: 'Posting Key - Text'
@ObjectModel: { dataCategory: #TEXT,
representativeKey: 'PostingKey',
usageType: { sizeCategory: #S,
dataClass: #CUSTOMIZING,
serviceQuality: #A },
supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY ],
modelingPattern: #LANGUAGE_DEPENDENT_TEXT }
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM: { lifecycle.contract.type: #PUBLIC_LOCAL_API,
viewType: #BASIC }
define view entity I_PostingKeyText as select from tbslt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_PostingKey as _PostingKey on $projection.PostingKey = _PostingKey.PostingKey
{
@Semantics.language
key tbslt.spras as Language,
key cast(tbslt.bschl as fis_bschl preserving type) as PostingKey,
@Semantics.text
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast (tbslt.ltext as fis_bschl_name preserving type ) as PostingKeyName,
@ObjectModel.association.type: [ #TO_COMPOSITION_ROOT, #TO_COMPOSITION_PARENT ]
_PostingKey,
_Language
} where umskz = '' ;
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA