I_CommoditySupplier

DDL: I_COMMODITYSUPPLIER SQL: ICMMDTYSUPLMSTER Type: view BASIC Package: LOG_CMM_PRC_CMMDTY_QTY_SUPPLR

Supplier Master for Commodity Management

I_CommoditySupplier is a Basic CDS View that provides data about "Supplier Master for Commodity Management" in SAP S/4HANA. It reads from 1 data source (lfa1) and exposes 6 fields with key field Supplier. Part of development package LOG_CMM_PRC_CMMDTY_QTY_SUPPLR.

Data Sources (1)

SourceAliasJoin Type
lfa1 lfa1 from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYSUPLMSTER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Supplier Master for Commodity Management view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Supplier lifnr Vendor no.
Country land1 Trip Ctry/Reg
SupplierName PA text
IsSupplierDeleted loevm End Contract
PurchasingIsBlocked sperm Purch. block
IsBusinessPurposeCompleted cvp_xblck Purpose Completed

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_CommoditySupplier.
-- 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: ICMMDTYSUPLMSTER

CREATE VIEW I_CommoditySupplier AS
SELECT
  lifnr AS Supplier,
  land1 AS Country,
  cast(name1 as name1_gp preserving type) AS SupplierName,
  loevm AS IsSupplierDeleted,
  sperm AS PurchasingIsBlocked,
  cvp_xblck AS IsBusinessPurposeCompleted
FROM lfa1
;