Fdt_Test_Snwd_So_P2_Cds

DDL: FDT_TEST_SNWD_SO_P2_CDS SQL: FDT_TESTSNWDSOP2 Type: view

Decimal parameter

Fdt_Test_Snwd_So_P2_Cds is a CDS View that provides data about "Decimal parameter" in SAP S/4HANA. It reads from 1 data source (snwd_so) and exposes 4 fields with key fields client, node_key.

Data Sources (1)

SourceAliasJoin Type
snwd_so snwd_so from

Parameters (1)

NameTypeDefault
p_created_at abap.dec( 16, 7 )

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName FDT_TESTSNWDSOP2 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Decimal parameter view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY client snwd_so client Workflow definition: Client
KEY node_key snwd_so node_key Tree Model: Node Key
so_id snwd_so so_id Sales Order ID
created_at snwd_so created_at Uploaded On

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 Fdt_Test_Snwd_So_P2_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: FDT_TESTSNWDSOP2
-- Parameters: p_created_at : abap.dec( 16, 7 )

CREATE VIEW Fdt_Test_Snwd_So_P2_Cds AS
SELECT
  snwd_so.client AS client,
  snwd_so.node_key AS node_key,
  snwd_so.so_id AS so_id,
  snwd_so.created_at AS created_at
FROM snwd_so
;