SHSM_TDWA

DDL: SHSM_TDWA SQL: SHSMTDWA Type: view

SHSM_TDWA is a CDS View in SAP S/4HANA. It reads from 2 data sources (tdwat, tdwa) and exposes 2 fields with key field dokar.

Data Sources (2)

SourceAliasJoin Type
tdwat description left_outer
tdwa document_type from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName SHSMTDWA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.preserveKey true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY dokar tdwa dokar SW Document Type
dartxt tdwat dartxt Description

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 SHSM_TDWA.
-- 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: SHSMTDWA

CREATE VIEW SHSM_TDWA AS
SELECT
  document_type.dokar AS dokar,
  description.dartxt AS dartxt
FROM tdwa AS document_type
LEFT OUTER JOIN tdwat AS description ON /* join condition not captured in parsed metadata */
;