I_FiscalTimeUnitValueHelp

DDL: I_FISCALTIMEUNITVALUEHELP SQL: IFIFTUVH Type: view COMPOSITE

Fiscal Time Unit

I_FiscalTimeUnitValueHelp is a Composite CDS View that provides data about "Fiscal Time Unit" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field FiscalTimeUnit.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIFTUVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey FiscalTimeUnit view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
EndUserText.label Fiscal Time Unit view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY FiscalTimeUnit Lower Value
FiscalTimeUnitName ddtext Short text

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_FiscalTimeUnitValueHelp.
-- 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: IFIFTUVH

CREATE VIEW I_FiscalTimeUnitValueHelp AS
SELECT
  cast( domvalue_l as fins_fscl_tperiod_offset_unit ) AS FiscalTimeUnit,
  ddtext AS FiscalTimeUnitName
FROM dd07t
;