I_JVAFsclYearPerdCoCodeForYTD
JVA Fiscal Year Period For Company Code
I_JVAFsclYearPerdCoCodeForYTD is a Composite CDS View that provides data about "JVA Fiscal Year Period For Company Code" in SAP S/4HANA. It reads from 5 data sources (I_CompanyCode, I_JVAGlobalCompanyParameter, I_JVALedger, I_JntVntrEquityGrp, I_FiscalYearPeriod) and exposes 22 fields with key fields Ledger, CompanyCode, CurrentFiscalYear, CurrentFiscalPeriod, JointVenture. It has 1 association to related views. Part of development package GJVA_UI_BACKEND.
Data Sources (5)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCode | CompanyCode | inner |
| I_JVAGlobalCompanyParameter | I_JVAGlobalCompanyParameter | inner |
| I_JVALedger | Ledger | inner |
| I_JntVntrEquityGrp | VntEquGroup | inner |
| I_FiscalYearPeriod | YearPeriod | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CompanyCode | _CompanyCode | _CompanyCode.CompanyCode = CompanyCode.CompanyCode |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IJVFYPERDCOYTD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | JVA Fiscal Year Period For Company Code | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Ledger | I_JVALedger | Ledger | Ledger |
| KEY | CompanyCode | I_CompanyCode | CompanyCode | Receiver Company Code |
| KEY | CurrentFiscalYear | I_FiscalYearPeriod | FiscalYear | G/L Fiscal Year |
| KEY | CurrentFiscalPeriod | I_FiscalYearPeriod | FiscalPeriod | Tax period |
| KEY | JointVenture | I_JntVntrEquityGrp | JointVenture | Joint venture |
| KEY | JntOpgAgrmtEquityGrp | I_JntVntrEquityGrp | JntOpgAgrmtEquityGrp | Equity group |
| PreviousFiscalYear | I_FiscalYearPeriod | FiscalYear | G/L Fiscal Year | |
| PreviousFiscalPeriod | I_FiscalYearPeriod | FiscalPeriod | Tax period | |
| FiscalYearVariant | I_FiscalYearPeriod | FiscalYearVariant | FY Variant | |
| FiscalPeriodStartDate | I_FiscalYearPeriod | FiscalPeriodStartDate | Start Date | |
| FiscalPeriodEndDate | I_FiscalYearPeriod | FiscalPeriodEndDate | End Date | |
| IsSpecialPeriod | I_FiscalYearPeriod | IsSpecialPeriod | Is Spec. Period | |
| FiscalYearStartDate | I_FiscalYearPeriod | FiscalYearStartDate | Start Date | |
| FiscalYearEndDate | I_FiscalYearPeriod | FiscalYearEndDate | End Date | |
| NextFiscalPeriod | I_FiscalYearPeriod | NextFiscalPeriod | Next Period | |
| NextFiscalPeriodFiscalYear | I_FiscalYearPeriod | NextFiscalPeriodFiscalYear | Next FiscPerFiscYear | |
| FiscalYearPeriod | I_FiscalYearPeriod | FiscalYearPeriod | Period/Year | |
| _FiscalPeriodStartDate | I_FiscalYearPeriod | _FiscalPeriodStartDate | ||
| _FiscalYear | I_FiscalYearPeriod | _FiscalYear | ||
| _FiscalYearVariant | I_FiscalYearPeriod | _FiscalYearVariant | ||
| _Text | I_FiscalYearPeriod | _Text | ||
| _CompanyCode | _CompanyCode |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view I_JVAFsclYearPerdCoCodeForYTD.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IJVFYPERDCOYTD
CREATE VIEW I_JVAFsclYearPerdCoCodeForYTD AS
SELECT
Ledger.Ledger AS Ledger,
CompanyCode.CompanyCode AS CompanyCode,
YearPeriod.FiscalYear AS CurrentFiscalYear,
YearPeriod.FiscalPeriod AS CurrentFiscalPeriod,
VntEquGroup.JointVenture AS JointVenture,
VntEquGroup.JntOpgAgrmtEquityGrp AS JntOpgAgrmtEquityGrp,
YearPeriod.FiscalYear AS PreviousFiscalYear,
YearPeriod.FiscalPeriod AS PreviousFiscalPeriod,
YearPeriod.FiscalYearVariant AS FiscalYearVariant,
YearPeriod.FiscalPeriodStartDate AS FiscalPeriodStartDate,
YearPeriod.FiscalPeriodEndDate AS FiscalPeriodEndDate,
YearPeriod.IsSpecialPeriod AS IsSpecialPeriod,
YearPeriod.FiscalYearStartDate AS FiscalYearStartDate,
YearPeriod.FiscalYearEndDate AS FiscalYearEndDate,
YearPeriod.NextFiscalPeriod AS NextFiscalPeriod,
YearPeriod.NextFiscalPeriodFiscalYear AS NextFiscalPeriodFiscalYear,
YearPeriod.FiscalYearPeriod AS FiscalYearPeriod,
YearPeriod._FiscalPeriodStartDate AS _FiscalPeriodStartDate,
YearPeriod._FiscalYear AS _FiscalYear,
YearPeriod._FiscalYearVariant AS _FiscalYearVariant,
YearPeriod._Text AS _Text
FROM I_FiscalYearPeriod AS YearPeriod
INNER JOIN I_CompanyCode AS CompanyCode ON /* join condition not captured in parsed metadata */
INNER JOIN I_JVAGlobalCompanyParameter ON /* join condition not captured in parsed metadata */
INNER JOIN I_JVALedger AS Ledger ON /* join condition not captured in parsed metadata */
INNER JOIN I_JntVntrEquityGrp AS VntEquGroup ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON _CompanyCode.CompanyCode = CompanyCode.CompanyCode -- association [1..1]
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA