test_4_ad

DDL: TEST_4_AD SQL: TEST4ADV Type: view

test data for adjust draft table

test_4_ad is a CDS View that provides data about "test data for adjust draft table" in SAP S/4HANA. It reads from 1 data source (test4ad) and exposes 3 fields with key field id.

Data Sources (1)

SourceAliasJoin Type
test4ad test4ad from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName TEST4ADV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label test data for adjust draft table view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
name name Zone name
test test Test

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 test_4_ad.
-- 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: TEST4ADV

CREATE VIEW test_4_ad AS
SELECT
  id,
  name,
  test
FROM test4ad
;