I_FormOfAddressText

DDL: I_FORMOFADDRESSTEXT Type: view_entity BASIC Package: S_ADDRESS_VDM

Form Of Address - Text

I_FormOfAddressText (Basic)

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

Cross Applications

I_FormOfAddressText is a Basic CDS View that provides data about "Form Of Address - Text" in SAP S/4HANA. It reads from 1 data source (tsad3t) and exposes 5 fields with key fields Language, FormOfAddress. It has 2 associations to related views. It is exposed through 9 OData services (ASQL_F2331, ASQL_F3034, ASQL_F3040, ...). Part of development package S_ADDRESS_VDM.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessCross Applications
Application ComponentBC-SRV-ADR
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Language-Dependent Text
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tsad3t tsad3t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_FormOfAddress _FormOfAddress $projection.FormOfAddress = _FormOfAddress.FormOfAddress

Annotations (11)

NameValueLevelField
EndUserText.label Form Of Address - Text view
Analytics.dataExtraction.enabled true view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IFORMOFADDRTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey FormOfAddress view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

OData Services (9)

ServiceBindingVersionContractRelease
ASQL_F2331 ASQL_F2331 C2 NOT_RELEASED
ASQL_F3034 ASQL_F3034 C2 NOT_RELEASED
ASQL_F3040 ASQL_F3040 C2 NOT_RELEASED
ASQL_F3098 ASQL_F3098 C2 NOT_RELEASED
ASQL_F3940 ASQL_F3940 C2 NOT_RELEASED
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED
ASQL_F4424 ASQL_F4424 C2 NOT_RELEASED
ASQL_F4765 ASQL_F4765 C2 NOT_RELEASED
ASQL_F5987 ASQL_F5987 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY FormOfAddress title Form-of-Address Key
FormOfAddressName title_medi Title Text
_Language _Language
_FormOfAddress _FormOfAddress

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_FormOfAddressText.
-- 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_FormOfAddressText AS
SELECT
  langu AS Language,
  title AS FormOfAddress,
  title_medi AS FormOfAddressName
FROM tsad3t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_FormOfAddress AS _FormOfAddress ON FormOfAddress = _FormOfAddress.FormOfAddress  -- association [0..1]
;