I_FinancialAccountTypeText

DDL: I_FINANCIALACCOUNTTYPETEXT SQL: IFIACCOUNTTYPET Type: view BASIC

Financial Account Type - Text

I_FinancialAccountTypeText is a Basic CDS View that provides data about "Financial Account Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields FinancialAccountType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (15)

NameValueLevelField
EndUserText.label Financial Account Type - Text view
AbapCatalog.sqlViewName IFIACCOUNTTYPET view
AbapCatalog.buffering.status #NOT_ALLOWED view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey FinancialAccountType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FinancialAccountType
KEY Language
FinancialAccountTypeName
DomainValue dd07t domvalue_l
_Language _Language
@EndUserText.label: 'Financial Account Type - Text'
@AbapCatalog.sqlViewName: 'IFIACCOUNTTYPET'
@AbapCatalog.buffering.status: #NOT_ALLOWED   
@VDM.viewType: #BASIC
@Analytics: { dataExtraction.enabled: true }

@ObjectModel: { usageType.sizeCategory: #M,
                usageType.dataClass:  #MASTER,
                usageType.serviceQuality: #A,
                dataCategory: #TEXT,
                representativeKey: 'FinancialAccountType',
                supportedCapabilities: [#EXTRACTION_DATA_SOURCE, #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ],
                modelingPattern: #LANGUAGE_DEPENDENT_TEXT }                   
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true  
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true

define view I_FinancialAccountTypeText as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

  key cast( substring( domvalue_l, 1, 1) as farp_koart ) as FinancialAccountType,

  @ObjectModel.foreignKey.association: '_Language'
  @Semantics.language: true
  key cast( ddlanguage as spras ) as Language,

      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
  cast(ddtext as fis_fin_acc_type_name) as FinancialAccountTypeName,
      @Analytics.hidden: true
      @Consumption.hidden: true
      dd07t.domvalue_l as DomainValue,
    _Language

}
where domname = 'FARP_KOART' and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/