I_StstclKeyFigDocPostgTypeText
Posting Type - Text
I_StstclKeyFigDocPostgTypeText is a Basic CDS View that provides data about "Posting Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields AllocationPostingType, Language. Part of development package FINS_SKF_DOCUMENT_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Posting Type - Text | view | |
| ObjectModel.representativeKey | AllocationPostingType | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | ISKFDPOSTTYPTXT | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AllocationPostingType | |||
| KEY | Language | |||
| AllocationPostingTypeText | ddtext |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Posting Type - Text'
@ObjectModel.representativeKey: 'AllocationPostingType'
@VDM: { viewType: #BASIC }
@ObjectModel:{
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #L} }
@ObjectModel.dataCategory:#TEXT
@Analytics.technicalName: 'ISKFDPOSTTYPTXT'
define view entity I_StstclKeyFigDocPostgTypeText
as select from dd07t
{
@ObjectModel.text.element: ['AllocationPostingTypeText']
key cast( domvalue_l as fco_posting_type ) as AllocationPostingType,
@Semantics.language: true
key cast( ddlanguage as spras ) as Language,
@Semantics.text: true
ddtext as AllocationPostingTypeText
}
where
domname = 'FCO_POSTING_TYPE'
and as4local = 'A'
and as4vers = '0000';
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