Atov_Pk_Vh_Open_Requests

DDL: ATOV_PK_VH_OPEN_REQUESTS SQL: ATO_V_PK_OPREQ Type: view Package: S_ATO_SL_PK_ODATA

Open Requests

Atov_Pk_Vh_Open_Requests is a CDS View that provides data about "Open Requests" in SAP S/4HANA. It reads from 2 data sources (e070c, e070) and exposes 1 field with key field request. Part of development package S_ATO_SL_PK_ODATA.

Data Sources (2)

SourceAliasJoin Type
e070c client_requests inner
e070 requests from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName ATO_V_PK_OPREQ view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Open Requests view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY request e070 trkorr Virtual Transport

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 Atov_Pk_Vh_Open_Requests.
-- 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: ATO_V_PK_OPREQ

CREATE VIEW Atov_Pk_Vh_Open_Requests AS
SELECT
  requests.trkorr AS request
FROM e070 AS requests
INNER JOIN e070c AS client_requests ON /* join condition not captured in parsed metadata */
;