I_CASelectionCategoryText

DDL: I_CASELECTIONCATEGORYTEXT SQL: ICASELCATT Type: view BASIC

Text zu Selektionstyp

I_CASelectionCategoryText is a Basic CDS View that provides data about "Text zu Selektionstyp" in SAP S/4HANA. It reads from 1 data source (tfk004t) and exposes 6 fields with key fields CAApplicationArea, CASelectionCategory, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tfk004t tfk004t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CAApplicationArea _ApplArea $projection.CAApplicationArea = _ApplArea.CAApplicationArea
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
EndUserText.label Text zu Selektionstyp view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CASelectionCategory view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ICASELCATT view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CAApplicationArea applk ApplicationArea
KEY CASelectionCategory seltx Selection Cat.
KEY Language spras Off. Language
CASelectionCategoryName txt30 Text
_ApplArea _ApplArea
_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_CASelectionCategoryText.
-- 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: ICASELCATT

CREATE VIEW I_CASelectionCategoryText AS
SELECT
  applk AS CAApplicationArea,
  seltx AS CASelectionCategory,
  spras AS Language,
  txt30 AS CASelectionCategoryName
FROM tfk004t
LEFT OUTER JOIN I_CAApplicationArea AS _ApplArea ON CAApplicationArea = _ApplArea.CAApplicationArea  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;