SADL_GwVAunitV2Prod

DDL: SADL_GW_V_AUNIT_V2_PROD SQL: SADLGWVAUV2PROD Type: view

Product for local unit tests

SADL_GwVAunitV2Prod is a CDS View that provides data about "Product for local unit tests" in SAP S/4HANA. It reads from 1 data source (snwd_pd) and exposes 19 fields with key field node_key.

Data Sources (1)

SourceAliasJoin Type
snwd_pd snwd_pd from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SADLGWVAUV2PROD view
EndUserText.label Product for local unit tests view
Search.searchable true view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY node_key snwd_pd node_key Tree Model: Node Key
ProductID snwd_pd product_id Simulated Product ID
type_code snwd_pd type_code Type Code
category snwd_pd category Violation Category
created_by snwd_pd created_by Version Created By
created_at snwd_pd created_at Uploaded On
changed_by snwd_pd changed_by User Name
changed_at snwd_pd changed_at Timestamp
name_guid snwd_pd name_guid Node Key
desc_guid snwd_pd desc_guid Node Key
currency snwd_pd currency_code Currency Code
currency3 snwd_pd currency_code Currency Code
price snwd_pd price RVP f.PricePro.
width snwd_pd width Width
depth snwd_pd depth Draught
height snwd_pd height Height
dim_unit snwd_pd dim_unit Unit of length
_Currency _Currency
_Currency2 _Currency2

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_GwVAunitV2Prod.
-- 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: SADLGWVAUV2PROD

CREATE VIEW SADL_GwVAunitV2Prod AS
SELECT
  snwd_pd.node_key AS node_key,
  snwd_pd.product_id AS ProductID,
  snwd_pd.type_code AS type_code,
  snwd_pd.category AS category,
  snwd_pd.created_by AS created_by,
  snwd_pd.created_at AS created_at,
  snwd_pd.changed_by AS changed_by,
  snwd_pd.changed_at AS changed_at,
  snwd_pd.name_guid AS name_guid,
  snwd_pd.desc_guid AS desc_guid,
  snwd_pd.currency_code AS currency,
  snwd_pd.currency_code AS currency3,
  snwd_pd.price AS price,
  snwd_pd.width AS width,
  snwd_pd.depth AS depth,
  snwd_pd.height AS height,
  snwd_pd.dim_unit AS dim_unit
FROM snwd_pd
;