SADL_GwVAunitV2VH

DDL: SADL_GW_V_AUNIT_V2_VALUEHELP SQL: SADLGWVAUV2VH Type: view

CDS View for Value Help on param

SADL_GwVAunitV2VH is a CDS View that provides data about "CDS View for Value Help on param" in SAP S/4HANA. It reads from 1 data source (snwd_so) and exposes 5 fields.

Data Sources (1)

SourceAliasJoin Type
snwd_so snwd_so from

Parameters (1)

NameTypeDefault
p_exchangeRateType kurst_curr

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SADLGWVAUV2VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS View for Value Help on param view

Fields (5)

KeyFieldSource TableSource FieldDescription
salesOrderId so_id Sales Order ID
createdBy created_by Version Created By
changedAt changed_at Timestamp
currencyCode currency_code Currency Code
grossAmount gross_amount Tax-Inclusive Amount

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_GwVAunitV2VH.
-- 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: SADLGWVAUV2VH
-- Parameters: p_exchangeRateType : kurst_curr

CREATE VIEW SADL_GwVAunitV2VH AS
SELECT
  so_id AS salesOrderId,
  created_by AS createdBy,
  changed_at AS changedAt,
  currency_code AS currencyCode,
  gross_amount AS grossAmount
FROM snwd_so
;