I_DATEFUNCTIONTEXT
Date Function Text
I_DATEFUNCTIONTEXT is a CDS View in S/4HANA. Date Function Text. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_FiscalDateFunctionText | view | from | BASIC | Fiscal Date Function Text |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | DateFunction | DateFunction | 1 |
@AbapCatalog.sqlViewName: 'IDTFUNCT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: '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
@VDM.viewType: #BASIC
define view I_Datefunctiontext as select from datefunction_t
association [0..1] to I_Datefunction as _DateFunction
on $projection.DateFunction = _DateFunction.DateFunction
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_DateFunction'
key datefunction_t.id as DateFunction,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key datefunction_t.language as Language,
@Semantics.text: true
datefunction_t.name as DateFunctionName,
@Semantics.text: true
datefunction_t.description as DateFunctionDescription,
_DateFunction,
_Language
}