SADL_RS_BUYER_ADDRESS

DDL: SADL_RS_BUYER_ADDRESS SQL: SADLSRSBUYERADDR Type: view

Buyers Address (SADL Reference Scenario)

SADL_RS_BUYER_ADDRESS is a CDS View that provides data about "Buyers Address (SADL Reference Scenario)" in SAP S/4HANA. It reads from 1 data source (sadl_rs_bp_addr) and exposes 4 fields with key field ID.

Data Sources (1)

SourceAliasJoin Type
sadl_rs_bp_addr sadl_rs_bp_addr from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SADLSRSBUYERADDR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Buyers Address (SADL Reference Scenario) view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ID id WorklistID
ParentId parent_id UUID
TypeCode type_code Type Code
_BusinessPartner _BusinessPartner

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_BUYER_ADDRESS.
-- 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: SADLSRSBUYERADDR

CREATE VIEW SADL_RS_BUYER_ADDRESS AS
SELECT
  ID,
  parent_id AS ParentId,
  type_code AS TypeCode
FROM sadl_rs_bp_addr
;