Sadl_V_Exp_SO_UI

DDL: SADL_V_EXP_SO_UI SQL: SADL_V_E_SOUI Type: view BASIC

CDS View Testing UI Annotations

Sadl_V_Exp_SO_UI is a Basic CDS View that provides data about "CDS View Testing UI Annotations" in SAP S/4HANA. It reads from 1 data source (snwd_so) and exposes 14 fields with key field SalesOrder.

Data Sources (1)

SourceAliasJoin Type
snwd_so snwd_so from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_E_SOUI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS View Testing UI Annotations view
Search.searchable true view
ObjectModel.compositionRoot true view
ObjectModel.transactionalProcessingEnabled true view
ObjectModel.writeActivePersistence SADL_V_E_SOUI view
VDM.viewType #BASIC view
UI.selectionVariant.text Selection Variant 1 view
UI.selectionVariant.filter CurrencyCode = "EUR" AND NetAmount between "100.50" AND "5000.50" and DeliveryStatus = "D" and LastChangedDateTime > "20160101000000.0000000" view
UI.textArrangement #TEXT_ONLY view
OData.publish true view
OData.entitySet.name ExpSalesOrder view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder snwd_so so_id Sales Order ID
CurrencyCode snwd_so currency_code Currency Code
CurrencyText
GrossAmount snwd_so gross_amount Customer Name
NetAmount snwd_so net_amount Tax-Exclusive Amount
TaxAmount snwd_so tax_amount VAT Amount Type
LifecycleStatus snwd_so lifecycle_status Status
BillingStatus snwd_so billing_status SO Confirmation
DeliveryStatus snwd_so delivery_status SO Ordering
OpportunityID snwd_so op_id Opportunity ID
CreationDateTime snwd_so created_at Uploaded On
LastChangedDateTime snwd_so changed_at Timestamp
dummy snwd_so dummy Single-Character Flag
bp_guid snwd_so buyer_guid Node Key

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_Exp_SO_UI.
-- 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_E_SOUI

CREATE VIEW Sadl_V_Exp_SO_UI AS
SELECT
  snwd_so.so_id AS SalesOrder,
  snwd_so.currency_code AS CurrencyCode,
  'CurrText' AS CurrencyText,
  snwd_so.gross_amount AS GrossAmount,
  snwd_so.net_amount AS NetAmount,
  snwd_so.tax_amount AS TaxAmount,
  snwd_so.lifecycle_status AS LifecycleStatus,
  snwd_so.billing_status AS BillingStatus,
  snwd_so.delivery_status AS DeliveryStatus,
  snwd_so.op_id AS OpportunityID,
  snwd_so.created_at AS CreationDateTime,
  snwd_so.changed_at AS LastChangedDateTime,
  snwd_so.dummy AS dummy,
  snwd_so.buyer_guid AS bp_guid
FROM snwd_so
;