SADL_V_AUnit_SO_TP

DDL: SADL_V_AUNIT_SO_TP SQL: SADLVASOTP Type: view

SO with faked transacational processing

SADL_V_AUnit_SO_TP is a CDS View that provides data about "SO with faked transacational processing" in SAP S/4HANA. It reads from 1 data source (SADL_V_AUnit_SO) and exposes 19 fields with key field node_key.

Data Sources (1)

SourceAliasJoin Type
SADL_V_AUnit_SO SADL_V_AUnit_SO from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName SADLVASOTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label SO with faked transacational processing view
ObjectModel.writeActiveImplementedBy ABAP:CL_SADL_DUMMY view
ObjectModel.transactionalProcessingEnabled true view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY node_key node_key Tree Model: Node Key
SalesOrderID SalesOrderID Sales Order ID
created_by created_by Version Created By
created_at created_at Uploaded On
changed_by changed_by User Name
changed_at changed_at Timestamp
note_guid note_guid Node Key
buyer_guid buyer_guid Node Key
HiddenCurrency HiddenCurrency Currency Code
gross_amount gross_amount Tax-Inclusive Amount
net_amount net_amount Tax-Exclusive Amount
tax_amount tax_amount VAT Amount Type
op_id op_id Opportunity ID
_Currency _Currency
_CurrencyTexts _CurrencyTexts
_Items _Items
_Items_AssociationWithLongName _Items_AssociationWithLongName
_OtherItems__AssocWithLongName _OtherItems__AssocWithLongName
_Self _Self

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_AUnit_SO_TP.
-- 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: SADLVASOTP

CREATE VIEW SADL_V_AUnit_SO_TP AS
SELECT
  node_key,
  SalesOrderID,
  created_by,
  created_at,
  changed_by,
  changed_at,
  note_guid,
  buyer_guid,
  HiddenCurrency,
  gross_amount,
  net_amount,
  tax_amount,
  op_id
FROM SADL_V_AUnit_SO
;