I_IBCRecipientListCategoryText

DDL: I_IBCRECIPIENTLISTCATEGORYTEXT Type: view_entity BASIC

Recipient List Category - Text

I_IBCRecipientListCategoryText is a Basic CDS View that provides data about "Recipient List Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields LanguageCode, RecipientListCategory.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
EndUserText.label Recipient List Category - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.technicalName IIBCRLCATEGT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RecipientListCategory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LanguageCode
KEY RecipientListCategory
DomainValue dd07t domvalue_l Lower Value
RecipientListCategoryText 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_IBCRecipientListCategoryText.
-- 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_IBCRecipientListCategoryText AS
SELECT
  cast( dd07t.ddlanguage as spras preserving type ) AS LanguageCode,
  cast( substring(dd07t.domvalue_l, 1, 1) as cuan_tg_dynamic preserving type ) AS RecipientListCategory,
  dd07t.domvalue_l AS DomainValue,
  ddtext AS RecipientListCategoryText
FROM dd07t
;