I_DateFunctionValue
Date Function values
I_DateFunctionValue is a Basic CDS View (Dimension) that provides data about "Date Function values" in SAP S/4HANA. It reads from 1 data source (datefunction_val) and exposes 5 fields with key fields DateFunction, DateFunctionValidityDate. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| datefunction_val | datefunction_val | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Datefunction | _Datefunction | _Datefunction.DateFunction = datefunction_val.datefunction |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDATEFUNCTIONVAL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Date Function values | 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.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DateFunction | datefunction | ||
| KEY | DateFunctionValidityDate | valid_for_date | ||
| DateFunctionStartDate | datefunctionstartdate | |||
| DateFunctionEndDate | datefunctionenddate | |||
| _Datefunction | _Datefunction |
@AbapCatalog.sqlViewName: 'IDATEFUNCTIONVAL'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Date Function values'
@ObjectModel.representativeKey: 'DateFunction'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
define view I_DateFunctionValue
as select from datefunction_val
association [1..1] to I_Datefunction as _Datefunction on _Datefunction.DateFunction = datefunction_val.datefunction
{
key datefunction as DateFunction,
key valid_for_date as DateFunctionValidityDate,
datefunctionstartdate as DateFunctionStartDate,
datefunctionenddate as DateFunctionEndDate,
_Datefunction
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DATEFUNCTION_VAL"
],
"ASSOCIATED":
[
"I_DATEFUNCTION"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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