sycm_aps_c_request_text

DDL: SYCM_APS_C_REQUEST_TEXT SQL: SYCMVCREQUESTTXT Type: view

Texts for transport request

sycm_aps_c_request_text is a CDS View that provides data about "Texts for transport request" in SAP S/4HANA. It reads from 2 data sources (sycm_aps_i_domain_text, sycm_aps_i_domain_text) and exposes 2 fields with key field request.

Data Sources (2)

SourceAliasJoin Type
sycm_aps_i_domain_text sycm_aps_i_domain_text from
sycm_aps_i_domain_text sycm_aps_i_domain_text union_all

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SYCMVCREQUESTTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Texts for transport request view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY request request Request/Task
text text User Group

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 sycm_aps_c_request_text.
-- 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: SYCMVCREQUESTTXT

CREATE VIEW sycm_aps_c_request_text AS
SELECT
  request,
  text
FROM sycm_aps_i_domain_text
-- UNION ALL with additional select branch(es): sycm_aps_i_domain_text
;