Sadl_V_Aunit_So_C_Ex

DDL: SADL_V_AUNIT_SO_C_EX SQL: SADLVASOCE Type: view Package: SADL_CDS_EXPOSURE

Sales Order Consumption View for AUTs

Sadl_V_Aunit_So_C_Ex is a CDS View that provides data about "Sales Order Consumption View for AUTs" in SAP S/4HANA. It reads from 1 data source (SADL_V_AUnit_SO_TP) and exposes 3 fields with key field SalesOrderID. Part of development package SADL_CDS_EXPOSURE.

Data Sources (1)

SourceAliasJoin Type
SADL_V_AUnit_SO_TP SalesOrder from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SADLVASOCE view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Sales Order Consumption View for AUTs view
ObjectModel.type #CONSUMPTION view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesOrderID SalesOrderID
created_by
author

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_C_Ex.
-- 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: SADLVASOCE

CREATE VIEW Sadl_V_Aunit_So_C_Ex AS
SELECT
  SalesOrderID,
  cast( SalesOrder.created_by as sepm_po_uuid ) AS created_by,
  cast( SalesOrder.created_by as sepm_po_uuid ) AS author
FROM SADL_V_AUnit_SO_TP AS SalesOrder
;