SADL_RS_SO_ROOT_FCT_BHV

DDL: SADL_RS_SO_ROOT_FCT_BHV SQL: SADLSRSSOAC Type: view

SRS: Test function input parameters

SADL_RS_SO_ROOT_FCT_BHV is a CDS View that provides data about "SRS: Test function input parameters" in SAP S/4HANA. It reads from 1 data source (sadl_rs_so_root) and exposes 4 fields with key field id.

Data Sources (1)

SourceAliasJoin Type
sadl_rs_so_root Document from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SADLSRSSOAC view
AbapCatalog.preserveKey true view
EndUserText.label SRS: Test function input parameters view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

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

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_RS_SO_ROOT_FCT_BHV.
-- 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: SADLSRSSOAC

CREATE VIEW SADL_RS_SO_ROOT_FCT_BHV AS
SELECT
  Document.id AS id,
  Document.seller_id AS seller_id,
  Document.buyer_id AS buyer_id,
  Document.type_code AS type_code
FROM sadl_rs_so_root AS Document
;