E_SupplierAddrDepdnt

DDL: E_SUPPLIERADDRDEPDNT SQL: ESUPADDRDEPDNT Type: view EXTENSION Package: VDM_MD_COMMON

Supl addr dept information - Extn

E_SupplierAddrDepdnt is a Extension CDS View that provides data about "Supl addr dept information - Extn" in SAP S/4HANA. It reads from 1 data source (lfa1_addr) and exposes 3 fields with key fields Supplier, AddressID. Part of development package VDM_MD_COMMON.

Data Sources (1)

SourceAliasJoin Type
lfa1_addr Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ESUPADDRDEPDNT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label Supl addr dept information - Extn view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Supplier lfa1_addr lifnr Vendor no.
KEY AddressID lfa1_addr adrnr Sold-To Address
IsActiveEntity

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 E_SupplierAddrDepdnt.
-- 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: ESUPADDRDEPDNT

CREATE VIEW E_SupplierAddrDepdnt AS
SELECT
  Persistence.lifnr AS Supplier,
  Persistence.adrnr AS AddressID,
  cast( 'X' as sdraft_is_active preserving type ) AS IsActiveEntity
FROM lfa1_addr AS Persistence
;