I_StstclKeyFigDocPostgTypeText

DDL: I_STSTCLKEYFIGDOCPOSTGTYPETEXT Type: view_entity BASIC Package: FINS_SKF_DOCUMENT_VDM

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)

SourceAliasJoin Type
dd07t dd07t from

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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';