Deprecated
This CDS view is deprecated in S/4HANA. Use I_SupplierPurchasingOrg instead. View all deprecated CDS views →

I_SupplierPurchOrg

DDL: I_SUPPLIERPURCHORG SQL: IMMSUPPURORG Type: view BASIC Package: APPL_MM_PUR_SOS

Vendor Details for Purchasing Org

I_SupplierPurchOrg is a Basic CDS View that provides data about "Vendor Details for Purchasing Org" in SAP S/4HANA. It reads from 1 data source (lfm1) and exposes 5 fields with key fields Supplier, PurchasingOrganization. Part of development package APPL_MM_PUR_SOS.

Data Sources (1)

SourceAliasJoin Type
lfm1 lfm1 from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMMSUPPURORG view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Vendor Details for Purchasing Org view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_SupplierPurchasingOrg view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Supplier lfm1 lifnr Vendor no.
KEY PurchasingOrganization lfm1 ekorg Purchasing Org.
IsSupplierDeleted lfm1 loevm End Contract
PurchasingIsBlocked lfm1 sperm Purch. block
_SupplierMaster _SupplierMaster

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_SupplierPurchOrg.
-- 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: IMMSUPPURORG

CREATE VIEW I_SupplierPurchOrg AS
SELECT
  lfm1.lifnr AS Supplier,
  lfm1.ekorg AS PurchasingOrganization,
  lfm1.loevm AS IsSupplierDeleted,
  lfm1.sperm AS PurchasingIsBlocked
FROM lfm1
;