AMITRSTAT_CDS

DDL: DDL_ISU_F4_AMITRSTAT SQL: V_AMITRSTAT_CDS Type: view

AMITRSTAT_CDS is a CDS View in SAP S/4HANA. It reads from 2 data sources (t002, tj02t) and exposes 4 fields.

Data Sources (2)

SourceAliasJoin Type
t002 t002 inner
tj02t tj02t left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName V_AMITRSTAT_CDS view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view

Fields (4)

KeyFieldSource TableSource FieldDescription
TRANSSTAT tj02 istat System status
SPRAS t002 spras Off. Language
TXT04
TRANSSTATTXT30 tj02t txt30 Text

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 AMITRSTAT_CDS.
-- 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: V_AMITRSTAT_CDS

CREATE VIEW AMITRSTAT_CDS AS
SELECT
  tj02.istat AS TRANSSTAT,
  t002.spras AS SPRAS,
  tj02t. txt04 AS TXT04,
  tj02t.txt30 AS TRANSSTATTXT30
INNER JOIN t002 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN tj02t ON /* join condition not captured in parsed metadata */
;