E_SuplrAddrDepdntPurgOrg

DDL: E_SUPLRADDRDEPDNTPURGORG SQL: ESUADDEPTPURCH Type: view EXTENSION Package: VDM_MD_COMMON

Suplr Add dept purch org - Extn

E_SuplrAddrDepdntPurgOrg is a Extension CDS View that provides data about "Suplr Add dept purch org - Extn" in SAP S/4HANA. It reads from 1 data source (lfm1_addr) and exposes 4 fields with key fields Supplier, AddressID, PurchasingOrganization. Part of development package VDM_MD_COMMON.

Data Sources (1)

SourceAliasJoin Type
lfm1_addr Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName ESUADDEPTPURCH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label Suplr Add dept purch org - Extn view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Supplier lfm1_addr lifnr Vendor no.
KEY AddressID lfm1_addr adrnr Sold-To Address
KEY PurchasingOrganization lfm1_addr ekorg Purchasing Org.
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_SuplrAddrDepdntPurgOrg.
-- 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: ESUADDEPTPURCH

CREATE VIEW E_SuplrAddrDepdntPurgOrg AS
SELECT
  Persistence.lifnr AS Supplier,
  Persistence.adrnr AS AddressID,
  Persistence.ekorg AS PurchasingOrganization,
  cast( 'X' as sdraft_is_active preserving type ) AS IsActiveEntity
FROM lfm1_addr AS Persistence
;