I_AddrCommunicationMethodText

DDL: I_ADDRCOMMUNICATIONMETHODTEXT Type: view_entity BASIC

Description of Communication Method

I_AddrCommunicationMethodText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_AddrCommunicationMethodText is a Basic CDS View that provides data about "Description of Communication Method" in SAP S/4HANA. It reads from 1 data source (tsact) and exposes 3 fields with key fields Language, CommunicationMediumType.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Language-Dependent Text
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tsact tsact from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Description of Communication Method view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IADCOMMMETHODTXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY CommunicationMediumType comm_type Communication Method (Key) (Business Address Services)
CommunicationMediumTypeName comm_text Communication type description

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_AddrCommunicationMethodText.
-- 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_AddrCommunicationMethodText AS
SELECT
  langu AS Language,
  comm_type AS CommunicationMediumType,
  comm_text AS CommunicationMediumTypeName
FROM tsact
;