I_MKT_IntactnCntctEventRsnT

DDL: I_MKT_INTACTNCNTCTEVENTRSNT Type: view_entity BASIC

Name for Event Reason Texts

I_MKT_IntactnCntctEventRsnT is a Basic CDS View that provides data about "Name for Event Reason Texts" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, InteractionCntctEventRsnCode.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Name for Event Reason Texts view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InteractionCntctEventRsnCode view
Analytics.technicalName IMKT_EVNT_TYP_T view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Lang.
KEY InteractionCntctEventRsnCode domvalue_l Lower Value
IntactnCntctEventReasonName ddtext Short 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_MKT_IntactnCntctEventRsnT.
-- 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_MKT_IntactnCntctEventRsnT AS
SELECT
  cast( ddlanguage as spras preserving type ) AS Language,
  domvalue_l AS InteractionCntctEventRsnCode,
  ddtext AS IntactnCntctEventReasonName
FROM dd07t
;