SADL_RAP_BHV_SRS_SO

DDL: SADL_RAP_BHV_SRS_SO SQL: SRSRAPBHVSO Type: view

Sales Order with behavior, non-draft

SADL_RAP_BHV_SRS_SO is a CDS View that provides data about "Sales Order with behavior, non-draft" in SAP S/4HANA. It reads from 1 data source (sadl_rs_so_root) and exposes 5 fields with key field id. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
sadl_rs_so_root SalesOrder from

Associations (1)

CardinalityTargetAliasCondition
[0..*] SADL_RAP_BHV_SRS_SOI _Items

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SRSRAPBHVSO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Sales Order with behavior, non-draft view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
seller_id seller_id Identifier
buyer_id buyer_id Identifier
type_code type_code Type Code
_Items _Items

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_RAP_BHV_SRS_SO.
-- 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: SRSRAPBHVSO

CREATE VIEW SADL_RAP_BHV_SRS_SO AS
SELECT
  id,
  seller_id,
  buyer_id,
  type_code
FROM sadl_rs_so_root AS SalesOrder
LEFT OUTER JOIN SADL_RAP_BHV_SRS_SOI AS _Items ON /* condition not available in parsed metadata */  -- association [0..*]
;