SEPM_I_AddressTypeText

DDL: SEPM_I_ADDRESSTYPETEXT SQL: SEPM_IADDRESSTPT Type: view

EPM Demo: Address Type Text

SEPM_I_AddressTypeText is a CDS View that provides data about "EPM Demo: Address Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 1 field. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[1..1] SEPM_I_AddressType _AddressType $projection.AddressType =_AddressType.AddressType

Annotations (9)

NameValueLevelField
EndUserText.label EPM Demo: Address Type Text view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey AddressType view
AbapCatalog.sqlViewName SEPM_IADDRESSTPT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (1)

KeyFieldSource TableSource FieldDescription
_Language _Language

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 SEPM_I_AddressTypeText.
-- 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: SEPM_IADDRESSTPT

CREATE VIEW SEPM_I_AddressTypeText AS
SELECT *  -- field list not available in parsed metadata
FROM dd07t
LEFT OUTER JOIN SEPM_I_AddressType AS _AddressType ON AddressType =_AddressType.AddressType  -- association [1..1]
;