I_FinancialManagementAreaText

DDL: I_FINANCIALMANAGEMENTAREATEXT SQL: IFMAREATEXT Type: view BASIC Package: PSM_S4C_BASIS

Financial Management Area - Text

I_FinancialManagementAreaText is a Basic CDS View that provides data about "Financial Management Area - Text" in SAP S/4HANA. It reads from 1 data source (fm01t) and exposes 5 fields with key fields FinancialManagementArea, Language. It has 2 associations to related views. Part of development package PSM_S4C_BASIS.

Data Sources (1)

SourceAliasJoin Type
fm01t fm01t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_FinancialManagementArea _FinancialManagementArea $projection.FinancialManagementArea = _FinancialManagementArea.FinancialManagementArea

Annotations (16)

NameValueLevelField
EndUserText.label Financial Management Area - Text view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey FinancialManagementArea view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.sqlViewName IFMAREATEXT view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FinancialManagementArea fikrs
KEY Language spras
FinancialManagementAreaName fitxt
_Language _Language
_FinancialManagementArea _FinancialManagementArea
@EndUserText.label: 'Financial Management Area - Text'
@Analytics: { 
              dataExtraction.enabled: true, 
              internalName: #LOCAL 
            }
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'FinancialManagementArea'
@ObjectModel.usageType: {
  sizeCategory: #S,
  dataClass:  #MASTER,
  serviceQuality: #A
}
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE]
@ObjectModel.dataCategory: #TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@AbapCatalog.buffering: { status: #ACTIVE, type: #FULL }
@AbapCatalog.sqlViewName: 'IFMAREATEXT'
define view I_FinancialManagementAreaText
  as select from fm01t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [0..1] to I_FinancialManagementArea as _FinancialManagementArea on $projection.FinancialManagementArea = _FinancialManagementArea.FinancialManagementArea   //for authorization check

{

  key fikrs                       as FinancialManagementArea,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key spras                       as Language,
      @Semantics.text: true
      fitxt                       as FinancialManagementAreaName,

      _Language,
      _FinancialManagementArea
};