I_BusinessPartnerAddressDsp

DDL: I_BUSINESSPARTNERADDRESSDSP Type: view_entity BASIC

Business Partner Address Display

I_BusinessPartnerAddressDsp is a Basic CDS View that provides data about "Business Partner Address Display" in SAP S/4HANA. It reads from 2 data sources (I_Address, but021_fs) and exposes 11 fields with key fields BusinessPartner, ValidityEndDate, AddressUsage, AddressNumber.

Data Sources (2)

SourceAliasJoin Type
I_Address BPAddressActive inner
but021_fs but021_fs from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Business Partner Address Display view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner but021_fs partner With Partner
KEY ValidityEndDate but021_fs valid_to Validity End Time
KEY AddressUsage but021_fs adr_kind Address Type
KEY AddressNumber but021_fs addrnumber Address Number
ValidityStartDate but021_fs valid_from Validity Start Time
StandardUsage but021_fs xdfadu Standard Usage
ValidFrom but021_fs valid_from Validity Start Time
CityDisplayName I_Address CityName Name
PostalCodeForDisplay I_Address PostalCode Postal Code
StreetDisplayName I_Address StreetName Text
CountryForDisplay I_Address Country Venue: Ctry/Reg

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_BusinessPartnerAddressDsp.
-- 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_BusinessPartnerAddressDsp AS
SELECT
  but021_fs.partner AS BusinessPartner,
  but021_fs.valid_to AS ValidityEndDate,
  but021_fs.adr_kind AS AddressUsage,
  but021_fs.addrnumber AS AddressNumber,
  but021_fs.valid_from AS ValidityStartDate,
  but021_fs.xdfadu AS StandardUsage,
  but021_fs.valid_from AS ValidFrom,
  BPAddressActive.CityName AS CityDisplayName,
  BPAddressActive.PostalCode AS PostalCodeForDisplay,
  BPAddressActive.StreetName AS StreetDisplayName,
  BPAddressActive.Country AS CountryForDisplay
FROM but021_fs
INNER JOIN I_Address AS BPAddressActive ON /* join condition not captured in parsed metadata */
;