Sadl_V_Extended_Cds

DDL: SADL_V_EXTENDED_CDS SQL: SADL_V_EXTD_CDS Type: view Package: SADL_CDS_EXPOSURE

Extended CDS

Sadl_V_Extended_Cds is a CDS View that provides data about "Extended CDS" in SAP S/4HANA. It reads from 1 data source (sadl_rs_so_root) and exposes 3 fields with key field SalesOrderID. Part of development package SADL_CDS_EXPOSURE.

Data Sources (1)

SourceAliasJoin Type
sadl_rs_so_root sadl_rs_so_root from

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_EXTD_CDS view
ClientDependent true view
EndUserText.label Extended CDS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesOrderID sadl_rs_so_root id WorklistID
type_code sadl_rs_so_root type_code Type Code
seller_id sadl_rs_so_root seller_id Identifier

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 Sadl_V_Extended_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: SADL_V_EXTD_CDS

CREATE VIEW Sadl_V_Extended_Cds AS
SELECT
  sadl_rs_so_root.id AS SalesOrderID,
  sadl_rs_so_root.type_code AS type_code,
  sadl_rs_so_root.seller_id AS seller_id
FROM sadl_rs_so_root
;