SADL_V_SalesOrder_BO

DDL: SADL_V_SALESORDERBO SQL: SADLVSOBO Type: view

SalesOrderBO

SADL_V_SalesOrder_BO is a CDS View that provides data about "SalesOrderBO" in SAP S/4HANA. It reads from 1 data source (sepm_cds_sales_order) and exposes 11 fields.

Data Sources (1)

SourceAliasJoin Type
sepm_cds_sales_order sepm_cds_sales_order from

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName SADLVSOBO view
EndUserText.label SalesOrderBO view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (11)

KeyFieldSource TableSource FieldDescription
created_by sepm_cds_sales_order created_by Version Created By
created_at sepm_cds_sales_order created_at Uploaded On
changed_by sepm_cds_sales_order changed_by User Name
changed_at sepm_cds_sales_order changed_at Timestamp
note_guid sepm_cds_sales_order note_guid Node Key
gross_amount sepm_cds_sales_order gross_amount Tax-Inclusive Amount
net_amount sepm_cds_sales_order net_amount Tax-Exclusive Amount
tax_amount sepm_cds_sales_order tax_amount VAT Amount Type
buyer_guid sepm_cds_sales_order buyer_guid Node Key
customer sepm_cds_sales_order customer Sold-to Party
_items sepm_cds_sales_order items Single-Character Flag

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_SalesOrder_BO.
-- 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: SADLVSOBO

CREATE VIEW SADL_V_SalesOrder_BO AS
SELECT
  sepm_cds_sales_order.created_by AS created_by,
  sepm_cds_sales_order.created_at AS created_at,
  sepm_cds_sales_order.changed_by AS changed_by,
  sepm_cds_sales_order.changed_at AS changed_at,
  sepm_cds_sales_order.note_guid AS note_guid,
  sepm_cds_sales_order.gross_amount AS gross_amount,
  sepm_cds_sales_order.net_amount AS net_amount,
  sepm_cds_sales_order.tax_amount AS tax_amount,
  sepm_cds_sales_order.buyer_guid AS buyer_guid,
  sepm_cds_sales_order.customer AS customer,
  sepm_cds_sales_order.items AS _items
FROM sepm_cds_sales_order
;