DEMO_BUSINESS_PARTNER_1

DDL: DEMO_BUSINESS_PARTNER_1 SQL: DEMO_BPA_1 Type: view

DEMO_BUSINESS_PARTNER_1 is a CDS View in SAP S/4HANA. It reads from 1 data source (snwd_bpa) and exposes 3 fields with key field bp_id.

Data Sources (1)

SourceAliasJoin Type
snwd_bpa partner from

Annotations (1)

NameValueLevelField
AbapCatalog.sqlViewName DEMO_BPA_1 view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY bp_id snwd_bpa bp_id BusPartner
company_name snwd_bpa company_name Company
bp_role snwd_bpa bp_role Bus. Part. Role

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 DEMO_BUSINESS_PARTNER_1.
-- 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: DEMO_BPA_1

CREATE VIEW DEMO_BUSINESS_PARTNER_1 AS
SELECT
  partner.bp_id AS bp_id,
  partner.company_name AS company_name,
  partner.bp_role AS bp_role
FROM snwd_bpa AS partner
;