C_CommMethTextVhTemp

DDL: C_COMMMETHTEXTVHTEMP SQL: CCOMMMETHTEXT Type: view CONSUMPTION

C_CommMethTextVhTemp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (tsact) and exposes 3 fields with key fields CommunicationMediumType, Language.

Data Sources (1)

SourceAliasJoin Type
tsact tsact from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CCOMMMETHTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ObjectModel.representativeKey CommunicationMediumType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CommunicationMediumType tsact comm_type Communication Type
KEY Language tsact langu Primary lang.
CommunicationMediumTypeName tsact 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 C_CommMethTextVhTemp.
-- 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: CCOMMMETHTEXT

CREATE VIEW C_CommMethTextVhTemp AS
SELECT
  tsact.comm_type AS CommunicationMediumType,
  tsact.langu AS Language,
  tsact.comm_text AS CommunicationMediumTypeName
FROM tsact
;