CUAN_IA_INTEREST

DDL: CUAN_IA_INTEREST Type: view_entity

Read Interaction Interests

CUAN_IA_INTEREST is a CDS View that provides data about "Read Interaction Interests" in SAP S/4HANA. It reads from 1 data source (cuand_ce_ia_intr) and exposes 3 fields with key field db_key. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
cuand_ce_ia_intr InteractionInterest from

Associations (1)

CardinalityTargetAliasCondition
[0..1] ibc_d_ioi_t _InteractionInterestText InteractionInterest.interest_item = _InteractionInterestText.interest_item and _InteractionInterestText.spras = $session.system_language

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Read Interaction Interests view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY db_key cuand_ce_ia_intr db_key UUID
parent_key cuand_ce_ia_intr parent_key UUID
_InteractionInterestText _InteractionInterestText

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 CUAN_IA_INTEREST.
-- 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 CUAN_IA_INTEREST AS
SELECT
  InteractionInterest.db_key AS db_key,
  InteractionInterest.parent_key AS parent_key
FROM cuand_ce_ia_intr AS InteractionInterest
LEFT OUTER JOIN ibc_d_ioi_t AS _InteractionInterestText ON InteractionInterest.interest_item = _InteractionInterestText.interest_item AND _InteractionInterestText.spras = $session.system_language  -- association [0..1]
;