SHSM_EKPO

DDL: SHSM_EKPO SQL: SHSMEKPO Type: view Package: ME

CDS View for EKPO search help

SHSM_EKPO is a CDS View that provides data about "CDS View for EKPO search help" in SAP S/4HANA. It reads from 2 data sources (ekko, ekpo) and exposes 9 fields with key fields ebeln, ebelp. Part of development package ME.

Data Sources (2)

SourceAliasJoin Type
ekko ekko inner
ekpo ekpo from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMEKPO view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label CDS View for EKPO search help view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ebeln ekpo ebeln Source PurchDoc
KEY ebelp ekpo ebelp Item pur. doc.
bstyp ekko bstyp Source doc.cat.
bsart ekko bsart Stnd purch.ord.
ekorg ekko ekorg Purchasing Org.
ekgrp ekko ekgrp Sub. purchasing grp
iseopblocked ekko iseopblocked Business Usage Comp.
statu ekko statu Vehicle Status
werks ekpo werks Receiving Plant

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 SHSM_EKPO.
-- 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: SHSMEKPO

CREATE VIEW SHSM_EKPO AS
SELECT
  ekpo.ebeln AS ebeln,
  ekpo.ebelp AS ebelp,
  ekko.bstyp AS bstyp,
  ekko.bsart AS bsart,
  ekko.ekorg AS ekorg,
  ekko.ekgrp AS ekgrp,
  ekko.iseopblocked AS iseopblocked,
  ekko.statu AS statu,
  ekpo.werks AS werks
FROM ekpo
INNER JOIN ekko ON /* join condition not captured in parsed metadata */
;