I_CalendarQuarterText

DDL: I_CALENDARQUARTERTEXT SQL: ICALQUARTERTEXT Type: view BASIC

Calendar Quarter text

I_CalendarQuarterText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_CalendarQuarterText is a Basic CDS View that provides data about "Calendar Quarter text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields CalendarQuarter, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentCA-GTF-DF
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CalendarQuarter _CalendarQuarter $projection.CalendarQuarter = _CalendarQuarter.CalendarQuarter
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CalendarQuarter view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AbapCatalog.sqlViewName ICALQUARTERTEXT view
EndUserText.label Calendar Quarter text view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled false view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CalendarQuarter Calendar Quarter
KEY Language ddlanguage Language Key
CalendarQuarterName dd07t ddtext Short Text for Fixed Values
DomainValue dd07t domvalue_l Values for Domains: Single Value/Lower Limit
_CalendarQuarter _CalendarQuarter
_Language _Language

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_CalendarQuarterText.
-- 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: ICALQUARTERTEXT

CREATE VIEW I_CalendarQuarterText AS
SELECT
  cast ( substring( dd07t.domvalue_l, 1, 1 ) as calendarquarter ) AS CalendarQuarter,
  ddlanguage AS Language,
  dd07t.ddtext AS CalendarQuarterName,
  dd07t.domvalue_l AS DomainValue
FROM dd07t
LEFT OUTER JOIN I_CalendarQuarter AS _CalendarQuarter ON CalendarQuarter = _CalendarQuarter.CalendarQuarter  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;