I_Datefunctiontext
Date Function Text
I_Datefunctiontext is a Basic CDS View that provides data about "Date Function Text" in SAP S/4HANA. It reads from 1 data source (datefunction_t) and exposes 6 fields with key fields DateFunction, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| datefunction_t | datefunction_t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Datefunction | _DateFunction | $projection.DateFunction = _DateFunction.DateFunction |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDTFUNCT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | 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 | |
| VDM.viewType | #BASIC | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DateFunction | datefunction_t | id | |
| KEY | Language | datefunction_t | language | |
| DateFunctionName | datefunction_t | name | ||
| DateFunctionDescription | datefunction_t | description | ||
| _DateFunction | _DateFunction | |||
| _Language | _Language |
@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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA