ATOV_CMN_EXPORT_REQUEST_STATE

DDL: ATOV_CMN_EXPORT_REQUEST_STATE Type: view_entity

3SL Transp. State 4 Export and Import

ATOV_CMN_EXPORT_REQUEST_STATE is a CDS View that provides data about "3SL Transp. State 4 Export and Import" in SAP S/4HANA. It reads from 3 data sources (ato_cmn_requests, e070c, e070) and exposes 1 field with key field request.

Data Sources (3)

SourceAliasJoin Type
ato_cmn_requests ato_requests left_outer
e070c clientinfo left_outer
e070 requests from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label 3SL Transp. State 4 Export and Import view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED 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_CMN_EXPORT_REQUEST_STATE.
-- 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.

CREATE VIEW ATOV_CMN_EXPORT_REQUEST_STATE AS
SELECT
  requests.trkorr AS request
FROM e070 AS requests
LEFT OUTER JOIN e070c AS clientinfo ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ato_cmn_requests AS ato_requests ON /* join condition not captured in parsed metadata */
;