I_CnsldtnProcPerdCycTypeText

DDL: I_CNSLDTNPROCPERDCYCTYPETEXT Type: view_entity BASIC

Consolidation Process Period Type - Text

I_CnsldtnProcPerdCycTypeText is a Basic CDS View that provides data about "Consolidation Process Period Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, CnsldtnProcessPeriodCycleType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t DomainText from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CnsldtnProcPeriodCycleType _CnsldtnProcessPeriodCycleType $projection.CnsldtnProcessPeriodCycleType = _CnsldtnProcessPeriodCycleType.CnsldtnProcessPeriodCycleType
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CnsldtnProcessPeriodCycleType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name CnsldtnProcPeriodCycleTypeText view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Consolidation Process Period Type - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY CnsldtnProcessPeriodCycleType
CnsldtnProcPeriodCycleTypeText
DomainValue dd07t domvalue_l Lower Value
_CnsldtnProcessPeriodCycleType _CnsldtnProcessPeriodCycleType
_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_CnsldtnProcPerdCycTypeText.
-- 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.

CREATE VIEW I_CnsldtnProcPerdCycTypeText AS
SELECT
  cast( DomainText.ddlanguage as spras preserving type ) AS Language,
  cast( left( DomainText.domvalue_l,3 ) as fincs_process_per_cycl_tpe preserving type ) AS CnsldtnProcessPeriodCycleType,
  cast( DomainText.ddtext as fincs_process_per_cycl_tpe_txt preserving type ) AS CnsldtnProcPeriodCycleTypeText,
  DomainText.domvalue_l AS DomainValue
FROM dd07t AS DomainText
LEFT OUTER JOIN I_CnsldtnProcPeriodCycleType AS _CnsldtnProcessPeriodCycleType ON CnsldtnProcessPeriodCycleType = _CnsldtnProcessPeriodCycleType.CnsldtnProcessPeriodCycleType  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;