SADL_V_AUnit_BuPa

DDL: SADL_V_AUNIT_BUPA SQL: SADLVBUPA Type: view

BusinessPartner for local unit tests

SADL_V_AUnit_BuPa is a CDS View that provides data about "BusinessPartner for local unit tests" in SAP S/4HANA. It reads from 1 data source (snwd_bpa) and exposes 16 fields with key field BusinessPartnerID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
snwd_bpa snwd_bpa from

Associations (1)

CardinalityTargetAliasCondition
[0..*] SADL_V_AUnit_Currency _Currency _Currency.waers = snwd_bpa.currency_code

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName SADLVBUPA view
EndUserText.label BusinessPartner for local unit tests view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerID snwd_bpa bp_id BusPartner
node_key snwd_bpa node_key Tree Model: Node Key
EMailAddress snwd_bpa email_address Email Address
PhoneNumber snwd_bpa phone_number Phone
CompanyName snwd_bpa company_name Company
LegalForm snwd_bpa legal_form Legal Form
CurrencyCode snwd_bpa currency_code Currency Code
bp_role snwd_bpa bp_role Bus. Part. Role
fax_number snwd_bpa fax_number Fax Number
web_address snwd_bpa web_address URI
address_guid snwd_bpa address_guid UUID
created_by snwd_bpa created_by Version Created By
created_at snwd_bpa created_at Uploaded On
changed_by snwd_bpa changed_by User Name
changed_at snwd_bpa changed_at Timestamp
_Currency _Currency

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_AUnit_BuPa.
-- 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: SADLVBUPA

CREATE VIEW SADL_V_AUnit_BuPa AS
SELECT
  snwd_bpa.bp_id AS BusinessPartnerID,
  snwd_bpa.node_key AS node_key,
  snwd_bpa.email_address AS EMailAddress,
  snwd_bpa.phone_number AS PhoneNumber,
  snwd_bpa.company_name AS CompanyName,
  snwd_bpa.legal_form AS LegalForm,
  snwd_bpa.currency_code AS CurrencyCode,
  snwd_bpa.bp_role AS bp_role,
  snwd_bpa.fax_number AS fax_number,
  snwd_bpa.web_address AS web_address,
  snwd_bpa.address_guid AS address_guid,
  snwd_bpa.created_by AS created_by,
  snwd_bpa.created_at AS created_at,
  snwd_bpa.changed_by AS changed_by,
  snwd_bpa.changed_at AS changed_at
FROM snwd_bpa
LEFT OUTER JOIN SADL_V_AUnit_Currency AS _Currency ON _Currency.waers = snwd_bpa.currency_code  -- association [0..*]
;