SEPM_I_Address

DDL: SEPM_I_ADDRESS SQL: SEPM_IADDRESS Type: view

EPM Demo: Address

SEPM_I_Address is a CDS View that provides data about "EPM Demo: Address" in SAP S/4HANA. It reads from 1 data source (snwd_ad) and exposes 9 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
snwd_ad snwd_ad from

Associations (1)

CardinalityTargetAliasCondition
[0..1] SEPM_I_Country _Country $projection.Country = _Country.Country

Annotations (7)

NameValueLevelField
EndUserText.label EPM Demo: Address view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.representativeKey AddressUUID view
AbapCatalog.sqlViewName SEPM_IADDRESS view

Fields (9)

KeyFieldSource TableSource FieldDescription
keeptheAddressUUIDfortheBASICview
CityName city Location
PostalCode postal_code Postal Code
StreetName street Street Code
HouseNumber building Building code
AddressValidityEndDate val_end_date Validity End Date
Longitude longitude Longitude
exposeassociationstoconsumers_Type
_Country _Country

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_Address.
-- 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_IADDRESS

CREATE VIEW SEPM_I_Address AS
SELECT
  city AS CityName,
  postal_code AS PostalCode,
  street AS StreetName,
  building AS HouseNumber,
  val_end_date AS AddressValidityEndDate,
  Longitude
FROM snwd_ad
LEFT OUTER JOIN SEPM_I_Country AS _Country ON Country = _Country.Country  -- association [0..1]
;