C_Sadl_DraftRootCore_WOA

DDL: C_SADL_DRAFT_ROOT_CORE_WOA SQL: CSADL_DRFTRT_WOA Type: view

Consumption-View without own Annotations

C_Sadl_DraftRootCore_WOA is a CDS View that provides data about "Consumption-View without own Annotations" in SAP S/4HANA. It reads from 1 data source (I_Sadl_DraftRootCore) and exposes 5 fields with key field SalesOrder. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_Sadl_DraftRootCore Document from

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_Sadl_DraftItemCore_WOA _Sadl_DraftItemCore $projection.SalesOrder = _Sadl_DraftItemCore.SalesOrder

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName CSADL_DRFTRT_WOA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consumption-View without own Annotations view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder I_Sadl_DraftRootCore SalesOrder SD Document
CurrencyCode I_Sadl_DraftRootCore CurrencyCode Currency Code
GrossAmount I_Sadl_DraftRootCore GrossAmount Gross value
_Sadl_DraftItemCore _Sadl_DraftItemCore
_Sadl_Draft_CC_VH I_Sadl_DraftRootCore _Sadl_Draft_CC_VH

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 C_Sadl_DraftRootCore_WOA.
-- 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: CSADL_DRFTRT_WOA

CREATE VIEW C_Sadl_DraftRootCore_WOA AS
SELECT
  Document.SalesOrder AS SalesOrder,
  Document.CurrencyCode AS CurrencyCode,
  Document.GrossAmount AS GrossAmount,
  Document._Sadl_Draft_CC_VH AS _Sadl_Draft_CC_VH
FROM I_Sadl_DraftRootCore AS Document
LEFT OUTER JOIN C_Sadl_DraftItemCore_WOA AS _Sadl_DraftItemCore ON SalesOrder = _Sadl_DraftItemCore.SalesOrder  -- association [0..*]
;