I_SuplrAddrDepdntExtIdentifier

DDL: I_SUPLRADDRDEPDNTEXTIDENTIFIER SQL: ISUPADDREXTID Type: view BASIC Package: VDM_MD_COMMON

Supplier External Identifier For Address

I_SuplrAddrDepdntExtIdentifier is a Basic CDS View that provides data about "Supplier External Identifier For Address" in SAP S/4HANA. It reads from 1 data source (lfaddr_ext) and exposes 6 fields with key fields Supplier, AddressID. It has 3 associations to related views. Part of development package VDM_MD_COMMON.

Data Sources (1)

SourceAliasJoin Type
lfaddr_ext lfaddr_ext from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_Supplier _Supplier $projection.Supplier = _Supplier.Supplier
[0..1] I_Address_2 _AddressDefaultRepresentation $projection.AddressID = _AddressDefaultRepresentation.AddressID and _AddressDefaultRepresentation.AddressRepresentationCode = ' '
[1..1] I_BusinessPartnerSupplier _BusinessPartnerSupplier $projection.Supplier = _BusinessPartnerSupplier.Supplier

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ISUPADDREXTID view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey AddressID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
EndUserText.label Supplier External Identifier For Address view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Supplier lfaddr_ext lifnr Vendor no.
KEY AddressID lfaddr_ext adrnr Sold-To Address
BuyerSupplierAddressIdentifier lfaddr_ext buyer_supplier_address_id BuyrDfndSuplrAddrID
_BusinessPartnerSupplier _BusinessPartnerSupplier
_Supplier _Supplier
_AddressDefaultRepresentation _AddressDefaultRepresentation

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_SuplrAddrDepdntExtIdentifier.
-- 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: ISUPADDREXTID

CREATE VIEW I_SuplrAddrDepdntExtIdentifier AS
SELECT
  lfaddr_ext.lifnr AS Supplier,
  lfaddr_ext.adrnr AS AddressID,
  lfaddr_ext.buyer_supplier_address_id AS BuyerSupplierAddressIdentifier
FROM lfaddr_ext
LEFT OUTER JOIN I_Supplier AS _Supplier ON Supplier = _Supplier.Supplier  -- association [1..1]
LEFT OUTER JOIN I_Address_2 AS _AddressDefaultRepresentation ON AddressID = _AddressDefaultRepresentation.AddressID AND _AddressDefaultRepresentation.AddressRepresentationCode = ' '  -- association [0..1]
LEFT OUTER JOIN I_BusinessPartnerSupplier AS _BusinessPartnerSupplier ON Supplier = _BusinessPartnerSupplier.Supplier  -- association [1..1]
;