Atpc_Cds_Ekes

DDL: ATPC_CDS_EKES SQL: ATPC_EKES Type: view

CDS View on EKES Table for ATP

Atpc_Cds_Ekes is a CDS View that provides data about "CDS View on EKES Table for ATP" in SAP S/4HANA. It reads from 2 data sources (atp_ekes, Atpc_Cds_Ekkn) and exposes 25 fields.

Data Sources (2)

SourceAliasJoin Type
atp_ekes ekes from
Atpc_Cds_Ekkn ekkn left_outer

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName ATPC_EKES view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label CDS View on EKES Table for ATP view

Fields (25)

KeyFieldSource TableSource FieldDescription
delnr atp_ekes ebeln Source PurchDoc
delps atp_ekes ebelp Item pur. doc.
delet atp_ekes etens Sequential No.
mandt atp_ekes mandt Editing Client
matnr atp_ekes matnr Vehicle Model
werks atp_ekes werks Receiving Plant
lgort atp_ekes lgort Sublocation
charg atp_ekes charg Chargeable Proc.
sgt_scat atp_ekes sgt_scat Stock Segment
lblkz atp_ekes lblkz SC Supplier
emlif atp_ekes emlif Supplier
vbeln Atpc_Cds_Ekkn vbeln SD Sched. Agmt
vbelp Atpc_Cds_Ekkn vbelp Schd. Agmt Item
ps_psp_pnr Atpc_Cds_Ekkn ps_psp_pnr WBS Element
eindt atp_ekes eindt Initial Entry
menge atp_ekes menge WarrCountValue
dabmg atp_ekes dabmg Qty Reduced
bwtar atp_ekes bwtar Valuation Type
webaz atp_ekes webaz GR Proc. Time
meins atp_ekes meins Valuation Unit
umrez atp_ekes umrez Numerator
umren atp_ekes umren Denominator
knttp atp_ekes knttp AcctAssgnCat:CC
reswk ekko reswk Supplying Plant
uzeit atp_ekes uzeit Time

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 Atpc_Cds_Ekes.
-- 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: ATPC_EKES

CREATE VIEW Atpc_Cds_Ekes AS
SELECT
  ekes.ebeln AS delnr,
  ekes.ebelp AS delps,
  ekes.etens AS delet,
  ekes.mandt AS mandt,
  ekes.matnr AS matnr,
  ekes.werks AS werks,
  ekes.lgort AS lgort,
  ekes.charg AS charg,
  ekes.sgt_scat AS sgt_scat,
  ekes.lblkz AS lblkz,
  ekes.emlif AS emlif,
  ekkn.vbeln AS vbeln,
  ekkn.vbelp AS vbelp,
  ekkn.ps_psp_pnr AS ps_psp_pnr,
  ekes.eindt AS eindt,
  ekes.menge AS menge,
  ekes.dabmg AS dabmg,
  ekes.bwtar AS bwtar,
  ekes.webaz AS webaz,
  ekes.meins AS meins,
  ekes.umrez AS umrez,
  ekes.umren AS umren,
  ekes.knttp AS knttp,
  ekko.reswk AS reswk,
  ekes.uzeit AS uzeit
FROM atp_ekes AS ekes
LEFT OUTER JOIN Atpc_Cds_Ekkn AS ekkn ON /* join condition not captured in parsed metadata */
;