I_FiscalDateFunctionText

DDL: I_FISCALDATEFUNCTIONTEXT SQL: IFIDTFUNCT Type: view BASIC

Fiscal Date Function Text

I_FiscalDateFunctionText is a Basic CDS View that provides data about "Fiscal Date Function Text" in SAP S/4HANA. It reads from 2 data sources (I_Datefunction, I_Datefunctiontext) and exposes 5 fields with key fields DateFunction, Language. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_Datefunction I_Datefunction inner
I_Datefunctiontext I_Datefunctiontext from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIDTFUNCT view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Fiscal Date Function Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DateFunction view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataExtraction.enabled true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DateFunction I_Datefunctiontext DateFunction
KEY Language Language
DateFunctionName DateFunctionName
DateFunctionDescription DateFunctionDescription
_Language _Language
@AbapCatalog.sqlViewName: 'IFIDTFUNCT'
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED

@EndUserText.label: 'Fiscal Date Function Text'

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DateFunction'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality:  #A
@ObjectModel.usageType.sizeCategory:  #S

@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics: {dataExtraction.enabled: true}
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE]
@VDM.viewType: #BASIC
@Search.searchable: true
define view I_FiscalDateFunctionText as select from I_Datefunctiontext 
  inner join I_Datefunction on I_Datefunction.DateFunction = I_Datefunctiontext.DateFunction

    association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
  key I_Datefunctiontext.DateFunction, 
  
  @Semantics.language: true
  @ObjectModel.foreignKey.association: '_Language'
  key Language, 
  
  @Semantics.text: true
  @Search.defaultSearchElement: true
  @Search.ranking: #HIGH     
  DateFunctionName, 
  
  @Semantics.text: true
  @Search.ranking: #LOW   
  DateFunctionDescription,
  _Language
} where I_Datefunction.DateFunctionCalendarType = '02';
  
  
  
  
  
  
  
  
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DATEFUNCTION",
"I_DATEFUNCTIONTEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/