I_CnsldtnSubItemTextEnhcd

DDL: I_CNSLDTNSUBITEMTEXTENHCD SQL: ICCSUBITEMTENH Type: view BASIC Package: FIN_CS_MASTER_DATA_ENHCD

Consolidation SubItem Text Enhanced

I_CnsldtnSubItemTextEnhcd is a Basic CDS View that provides data about "Consolidation SubItem Text Enhanced" in SAP S/4HANA. It reads from 1 data source (tf116) and exposes 7 fields with key fields SubItemCategory, Language, SubItem. It has 2 associations to related views. Part of development package FIN_CS_MASTER_DATA_ENHCD.

Data Sources (1)

SourceAliasJoin Type
tf116 tf116 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_CnsldtnSubItemCategory _SubItemCategory $projection.SubItemCategory = _SubItemCategory.SubItemCategory

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICCSUBITEMTENH view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Consolidation SubItem Text Enhanced view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SubItem view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY SubItemCategory sityp Trip Schedule Type
KEY Language langu Primary lang.
KEY SubItem sitem Subitem
SubItemMediumText txtmi Medium Text
SubItemText txtsh Short Text
_SubItemCategory _SubItemCategory
_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_CnsldtnSubItemTextEnhcd.
-- 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: ICCSUBITEMTENH

CREATE VIEW I_CnsldtnSubItemTextEnhcd AS
SELECT
  sityp AS SubItemCategory,
  langu AS Language,
  sitem AS SubItem,
  txtmi AS SubItemMediumText,
  txtsh AS SubItemText
FROM tf116
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_CnsldtnSubItemCategory AS _SubItemCategory ON SubItemCategory = _SubItemCategory.SubItemCategory  -- association [0..1]
;