ATOV_STRG_KEY_IN_OPEN_REQUEST

DDL: ATOV_STRG_KEY_IN_OPEN_REQUEST SQL: ATOV_STRKEY_OREQ Type: view

ATO: String Key in Customizing Request

ATOV_STRG_KEY_IN_OPEN_REQUEST is a CDS View that provides data about "ATO: String Key in Customizing Request" in SAP S/4HANA. It reads from 2 data sources (ATOV_TASK_AND_REQUEST_E070, e071k_str) and exposes 6 fields.

Data Sources (2)

SourceAliasJoin Type
ATOV_TASK_AND_REQUEST_E070 request inner
e071k_str table_key from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATOV_STRKEY_OREQ view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label ATO: String Key in Customizing Request view

Fields (6)

KeyFieldSource TableSource FieldDescription
program_id e071k_str pgmid Program Name
object_type e071k_str object TRFM Object
object_name e071k_str objname Table Name
table_key e071k_str tabkey Table Keys
trstatus ATOV_TASK_AND_REQUEST_E070 trstatus Status
request ATOV_TASK_AND_REQUEST_E070 request Request/Task

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_STRG_KEY_IN_OPEN_REQUEST.
-- 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: ATOV_STRKEY_OREQ

CREATE VIEW ATOV_STRG_KEY_IN_OPEN_REQUEST AS
SELECT
  table_key.pgmid AS program_id,
  table_key.object AS object_type,
  table_key.objname AS object_name,
  table_key.tabkey AS table_key,
  request.trstatus AS trstatus,
  request.request AS request
FROM e071k_str AS table_key
INNER JOIN ATOV_TASK_AND_REQUEST_E070 AS request ON /* join condition not captured in parsed metadata */
;