EWA_ALY_P_JST

DDL: EWA_ALY_P_JST SQL: EWAALYPJST Type: view

EWA_ALY_P_JST is a CDS View in SAP S/4HANA. It reads from 1 data source (I_StatusObjectStatusBasic) and exposes 3 fields with key fields objnr, stat.

Data Sources (1)

SourceAliasJoin Type
I_StatusObjectStatusBasic I_StatusObjectStatusBasic from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName EWAALYPJST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY objnr StatusObject Status Object
KEY stat StatusCode Statuscode
inact StatusIsInactive TRUE

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_P_JST.
-- 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: EWAALYPJST

CREATE VIEW EWA_ALY_P_JST AS
SELECT
  StatusObject AS objnr,
  StatusCode AS stat,
  StatusIsInactive AS inact
FROM I_StatusObjectStatusBasic
;