/BOFU/VE_BPAU

DDL: /BOFU/VE_BPAU Type: view_entity

BOPF: Business Partner Address Usage

/BOFU/VE_BPAU is a CDS View that provides data about "BOPF: Business Partner Address Usage" in SAP S/4HANA. It reads from 2 data sources (but000, but021_fs) and exposes 6 fields with key fields partner, addrnumber, addresstype, usagevalidto.

Data Sources (2)

SourceAliasJoin Type
but000 but000 inner
but021_fs but021_fs from

Annotations (7)

NameValueLevelField
EndUserText.label BOPF: Business Partner Address Usage view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY partner but021_fs partner With Partner
KEY addrnumber but021_fs addrnumber Address Number
KEY addresstype but021_fs adr_kind Address Type
KEY usagevalidto
augrp but000 augrp Component of the Version Number
IsBusinessPurposeCompleted but000 xpcpt PurposeComplete Flag

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 /BOFU/VE_BPAU.
-- 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.

CREATE VIEW /BOFU/VE_BPAU AS
SELECT
  but021_fs.partner AS partner,
  but021_fs.addrnumber AS addrnumber,
  but021_fs.adr_kind AS addresstype,
  tstmp_to_dats(but021_fs.valid_to, 'UTC', $session.client, 'NULL') AS usagevalidto,
  but000.augrp AS augrp,
  but000.xpcpt AS IsBusinessPurposeCompleted
FROM but021_fs
INNER JOIN but000 ON /* join condition not captured in parsed metadata */
;