I_LastDayOfFsclDteFunctionVH
Last day of fiscal date function
I_LastDayOfFsclDteFunctionVH is a Basic CDS View that provides data about "Last day of fiscal date function" in SAP S/4HANA. It reads from 2 data sources (P_LastDayOfFsclDteFunction, I_FiscalYearPeriodForCmpnyCode) and exposes 7 fields with key fields DateFunction, CompanyCode.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_LastDayOfFsclDteFunction | DateFunction | inner |
| I_FiscalYearPeriodForCmpnyCode | FiscalYearPeriodForCmpnyCode | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILSTDAYFSCDTEFNC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Last day of fiscal date function | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | DateFunction | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| UI.textArrangement | #TEXT_LAST | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DateFunction | DateFunction | ||
| KEY | CompanyCode | I_FiscalYearPeriodForCmpnyCode | CompanyCode | |
| FiscalYearVariant | P_LastDayOfFsclDteFunction | FiscalYearVariant | ||
| DateFunctionDescription | DateFunctionDescription | |||
| DateFunctionStartDate | I_FiscalYearPeriodForCmpnyCode | FiscalPeriodStartDate | ||
| DateFunctionEndDate | DateFunctionEndDate | |||
| _FiscalPeriodStartDate | _FiscalPeriodStartDate |
@AbapCatalog: {
sqlViewName: 'ILSTDAYFSCDTEFNC',
compiler.compareFilter: true,
preserveKey: true
}
@EndUserText.label: 'Last day of fiscal date function'
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #C,
sizeCategory: #S
},
dataCategory: #VALUE_HELP,
representativeKey: 'DateFunction'
}
@ClientHandling: {
algorithm: #SESSION_VARIABLE
}
@VDM.viewType: #BASIC
@UI.textArrangement: #TEXT_LAST
define view I_LastDayOfFsclDteFunctionVH
as select from I_FiscalYearPeriodForCmpnyCode as FiscalYearPeriodForCmpnyCode
inner join P_LastDayOfFsclDteFunction as DateFunction on DateFunction.FiscalYearVariant = FiscalYearPeriodForCmpnyCode.FiscalYearVariant
and DateFunction.DateFunctionEndDate = FiscalYearPeriodForCmpnyCode.FiscalPeriodEndDate
and FiscalYearPeriodForCmpnyCode.IsSpecialPeriod = ''
{
key DateFunction,
key FiscalYearPeriodForCmpnyCode.CompanyCode,
@UI.hidden: true
DateFunction.FiscalYearVariant,
DateFunctionDescription,
FiscalYearPeriodForCmpnyCode.FiscalPeriodStartDate as DateFunctionStartDate,
DateFunctionEndDate,
_FiscalPeriodStartDate
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FISCALYEARPERIODFORCMPNYCODE",
"P_LASTDAYOFFSCLDTEFUNCTION"
],
"ASSOCIATED":
[
"I_CALENDARDATE"
],
"BASE":
[
"I_FISCALYEARPERIODFORCMPNYCODE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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