C_CN_FsclPerdVH

DDL: C_CN_FSCLPERDVH SQL: CVCNFSCLPERDVH Type: view CONSUMPTION

Fiscal Period Value Help

C_CN_FsclPerdVH is a Consumption CDS View that provides data about "Fiscal Period Value Help" in SAP S/4HANA. It reads from 2 data sources (I_Ledger, I_FiscalYearPeriodForLedger) and exposes 3 fields with key fields CompanyCode, FiscalYear, FiscalPeriod.

Data Sources (2)

SourceAliasJoin Type
I_Ledger Ledger inner
I_FiscalYearPeriodForLedger Period from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CVCNFSCLPERDVH view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
EndUserText.label Fiscal Period Value Help view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_FiscalYearPeriodForLedger CompanyCode Receiver Company Code
KEY FiscalYear I_FiscalYearPeriodForLedger FiscalYear G/L Fiscal Year
KEY FiscalPeriod I_FiscalYearPeriodForLedger FiscalPeriod Tax period

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 C_CN_FsclPerdVH.
-- 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: CVCNFSCLPERDVH

CREATE VIEW C_CN_FsclPerdVH AS
SELECT
  Period.CompanyCode AS CompanyCode,
  Period.FiscalYear AS FiscalYear,
  Period.FiscalPeriod AS FiscalPeriod
FROM I_FiscalYearPeriodForLedger AS Period
INNER JOIN I_Ledger AS Ledger ON /* join condition not captured in parsed metadata */
;