I_CASelectionCategory

DDL: I_CASELECTIONCATEGORY SQL: ICASELCAT Type: view BASIC

Selektionstyp

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

Data Sources (1)

SourceAliasJoin Type
tfk004 tfk004 from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CAApplicationArea _ApplArea $projection.CAApplicationArea = _ApplArea.CAApplicationArea
[0..*] I_CASelectionCategoryText _Text $projection.CAApplicationArea = _Text.CAApplicationArea and $projection.CASelectionCategory = _Text.CASelectionCategory

Annotations (9)

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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CAApplicationArea applk ApplicationArea
KEY CASelectionCategory seltx Selection Cat.
CASelectionFieldName selfn Field Name
_ApplArea _ApplArea
_Text _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_CASelectionCategory.
-- 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: ICASELCAT

CREATE VIEW I_CASelectionCategory AS
SELECT
  applk AS CAApplicationArea,
  seltx AS CASelectionCategory,
  selfn AS CASelectionFieldName
FROM tfk004
LEFT OUTER JOIN I_CAApplicationArea AS _ApplArea ON CAApplicationArea = _ApplArea.CAApplicationArea  -- association [1..1]
LEFT OUTER JOIN I_CASelectionCategoryText AS _Text ON CAApplicationArea = _Text.CAApplicationArea AND CASelectionCategory = _Text.CASelectionCategory  -- association [0..*]
;