I_AddressCommunicationRemark_2

DDL: I_ADDRESSCOMMUNICATIONREMARK_2 Type: view_entity BASIC

Remark for Communication Data

I_AddressCommunicationRemark_2 (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_AddressCommunicationRemark_2 is a Basic CDS View that provides data about "Remark for Communication Data" in SAP S/4HANA. It reads from 1 data source (adrt) and exposes 6 fields with key fields AddressID, AddressPersonID, CommunicationMediumType, CommMediumSequenceNumber, Language.

SAP Help Documentation

CategoryCDS Views for Business Address Service
Purpose
This CDS view returns the communication remarks (notes) for each communication entry, such as, phone number, fax number, and email address, linked to an address. These remarks are primarily used for collecting additional information about a communication connection, and are stored irrespective of the language. This CDS view provides the data to answer the following business questions: What are the list of remarks against each communication entry for an address? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view need to access it via another CDS view (privileged mode).

Structure
Important Fields Important fields in this view include the following: Field Name Description AddressID Address Number AddressPersonID Person Number CommunicationMediumType Communication Method Key CommMediumSequenceNumber Sequence Number Language Language Key CommunicationRemarkText Communication Link Notes

View on SAP Help Portal →

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
adrt adrt from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Remark for Communication Data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY AddressID addrnumber Address Number
KEY AddressPersonID persnumber Person Number
KEY CommunicationMediumType comm_type Communication Method (Key) (Business Address Services)
KEY CommMediumSequenceNumber consnumber Sequence Number
KEY Language langu Primary lang.
CommunicationRemarkText remark Communication link notes

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_AddressCommunicationRemark_2.
-- 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_AddressCommunicationRemark_2 AS
SELECT
  addrnumber AS AddressID,
  persnumber AS AddressPersonID,
  comm_type AS CommunicationMediumType,
  consnumber AS CommMediumSequenceNumber,
  langu AS Language,
  remark AS CommunicationRemarkText
FROM adrt
;