EWA_ALY_I_OPS

DDL: EWA_ALY_I_OPS SQL: EWAALYIOPS Type: view

Payment status Waste Disposal Order item

EWA_ALY_I_OPS is a CDS View that provides data about "Payment status Waste Disposal Order item" in SAP S/4HANA. It reads from 2 data sources (EWA_ALY_P_OSB, vbfa) and exposes 4 fields with key fields order_date, sdaufnr_nach.

Data Sources (2)

SourceAliasJoin Type
EWA_ALY_P_OSB lanf from
vbfa vbfa right_outer

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName EWAALYIOPS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Payment status Waste Disposal Order item view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY order_date EWA_ALY_P_OSB order_date Posting Date
KEY sdaufnr_nach EWA_ALY_P_OSB sdaufnr_nach Follow-on Doc.
invoice 1
noinvoice 0

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 EWA_ALY_I_OPS.
-- 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: EWAALYIOPS

CREATE VIEW EWA_ALY_I_OPS AS
SELECT
  lanf.order_date AS order_date,
  lanf.sdaufnr_nach AS sdaufnr_nach,
  1 AS invoice,
  0 AS noinvoice
FROM EWA_ALY_P_OSB AS lanf
RIGHT OUTER JOIN vbfa ON /* join condition not captured in parsed metadata */
;