P_FiscalYearActTypeLookup
P_FiscalYearActTypeLookup is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_ControllingArea) and exposes 5 fields with key fields ControllingArea, FiscalYearVariant. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ControllingArea | I_ControllingArea | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | I_FiscalYearForVariant | _FiscalYearForVariant | $projection.FiscalYearVariant = _FiscalYearForVariant.FiscalYearVariant |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PGJAHRATLUT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingArea | ControllingArea | ||
| KEY | FiscalYearVariant | FiscalYearVariant | ||
| FiscalYearStartDate | _FiscalYearForVariant | FiscalYearStartDate | ||
| FiscalYearEndDate | _FiscalYearForVariant | FiscalYearEndDate | ||
| FiscalYear | _FiscalYearForVariant | FiscalYear |
@AbapCatalog.sqlViewName: 'PGJAHRATLUT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@VDM.viewType: #BASIC
define view P_FiscalYearActTypeLookup as select from I_ControllingArea
association [1] to I_FiscalYearForVariant as _FiscalYearForVariant
on $projection.FiscalYearVariant = _FiscalYearForVariant.FiscalYearVariant
{
//I_ControllingArea
key ControllingArea,
key FiscalYearVariant,
_FiscalYearForVariant.FiscalYearStartDate,
_FiscalYearForVariant.FiscalYearEndDate,
_FiscalYearForVariant.FiscalYear
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CONTROLLINGAREA",
"I_FISCALYEARFORVARIANT"
],
"ASSOCIATED":
[
"I_FISCALYEARFORVARIANT"
],
"BASE":
[],
"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