C_SlsAcctgFsclPerdForCoCodeVH

DDL: C_SLSACCTGFSCLPERDFORCOCODEVH SQL: CSAOFYPFCCVH Type: view CONSUMPTION

Fiscal Year Period for Company Code Value Help

C_SlsAcctgFsclPerdForCoCodeVH is a Consumption CDS View that provides data about "Fiscal Year Period for Company Code Value Help" in SAP S/4HANA. It reads from 1 data source (I_FiscalYearPeriodForCmpnyCode) and exposes 6 fields with key fields CompanyCode, FiscalYearPeriod.

Data Sources (1)

SourceAliasJoin Type
I_FiscalYearPeriodForCmpnyCode I_FiscalYearPeriodForCmpnyCode from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CSAOFYPFCCVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Fiscal Year Period for Company Code Value Help view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
UI.textArrangement #TEXT_LAST view
VDM.viewType #CONSUMPTION view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY FiscalYearPeriod FiscalYearPeriod Period/Year
FiscalYear FiscalYear G/L Fiscal Year
FiscalPeriod FiscalPeriod Tax period
FiscalPeriodStartDate FiscalPeriodStartDate
FiscalPeriodEndDate FiscalPeriodEndDate

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_SlsAcctgFsclPerdForCoCodeVH.
-- 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: CSAOFYPFCCVH

CREATE VIEW C_SlsAcctgFsclPerdForCoCodeVH AS
SELECT
  CompanyCode,
  FiscalYearPeriod,
  FiscalYear,
  FiscalPeriod,
  FiscalPeriodStartDate,
  FiscalPeriodEndDate
FROM I_FiscalYearPeriodForCmpnyCode
;