I_ActiveAddressRepresentation

DDL: I_ACTIVEADDRESSREPRESENTATION Type: view_entity BASIC

Representation of names of language scripts

I_ActiveAddressRepresentation (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_ActiveAddressRepresentation is a Basic CDS View that provides data about "Representation of names of language scripts" in SAP S/4HANA. It reads from 1 data source (I_AddressRepresentation) and exposes 2 fields with key field AddressRepresentationCode. It has 3 associations to related views.

SAP Help Documentation

CategoryCDS Views for Business Address Service
Purpose
This CDS view returns the active script codes for the representation of names of language scripts. A script is a set of graphic characters used for the written form of one or more languages, for example, C - Simplified Chinese , A - Arabic , and so on. This CDS view provides the data to answer the following business questions: What are the active codes for the representation of names of languages scripts? 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 don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description AddressRepresentationCode Version ID for International Addresses

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
I_AddressRepresentation AddressRepresentation from

Associations (3)

CardinalityTargetAliasCondition
[1..1] tsadvc _ActiveAddressRepresentation $projection.AddressRepresentationCode = _ActiveAddressRepresentation.nation
[0..1] tsadvc_clidep _ClientDependentAddrRep $projection.AddressRepresentationCode = _ClientDependentAddrRep.nation
[0..*] I_AddressRepresentationText _Text $projection.AddressRepresentationCode = _Text.AddressRepresentationCode

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
EndUserText.label Representation of names of language scripts view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AddressRepresentationCode I_AddressRepresentation AddressRepresentationCode Version ID for International Addresses
_Text _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_ActiveAddressRepresentation.
-- 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_ActiveAddressRepresentation AS
SELECT
  AddressRepresentation.AddressRepresentationCode AS AddressRepresentationCode
FROM I_AddressRepresentation AS AddressRepresentation
LEFT OUTER JOIN tsadvc AS _ActiveAddressRepresentation ON AddressRepresentationCode = _ActiveAddressRepresentation.nation  -- association [1..1]
LEFT OUTER JOIN tsadvc_clidep AS _ClientDependentAddrRep ON AddressRepresentationCode = _ClientDependentAddrRep.nation  -- association [0..1]
LEFT OUTER JOIN I_AddressRepresentationText AS _Text ON AddressRepresentationCode = _Text.AddressRepresentationCode  -- association [0..*]
;