/BOFU/VE_BPCMN

DDL: /BOFU/VE_BPCMN Type: view_entity

BOPF: Business Partner Common Data

/BOFU/VE_BPCMN is a CDS View that provides data about "BOPF: Business Partner Common Data" in SAP S/4HANA. It reads from 1 data source (but000) and exposes 17 fields with key field partner. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
but000 but000 from

Associations (1)

CardinalityTargetAliasCondition
[0..1] /BOFU/CV_BPCurrentDefaultAddr _BPCurrentDefaultAddress $projection.partner = _BPCurrentDefaultAddress.BusinessPartner

Annotations (7)

NameValueLevelField
EndUserText.label BOPF: Business Partner Common Data 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 (17)

KeyFieldSource TableSource FieldDescription
KEY partner but000 partner With Partner
partner_guid but000 partner_guid Partner GUID
valid_from
valid_to
searchterm1 but000 bu_sort1 Search Term 1
searchterm2 but000 bu_sort2 Search Term 2
firstname but000 name_first First Name
lastname but000 name_last Last Name
name1 but000 name_org1 Name 1
name2 but000 name_org2 Name 2
name3 but000 name_org3 Name 3
name4 but000 name_org4 Name 4
namegroup1 but000 name_grp1 Name 1
namegroup2 but000 name_grp2 Name 2
grouptype but000 partgrptyp Group type
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_BPCMN.
-- 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_BPCMN AS
SELECT
  but000.partner AS partner,
  but000.partner_guid AS partner_guid,
  cast ('' as bu_central_valid_from ) AS valid_from,
  cast ('' as bu_central_valid_to ) AS valid_to,
  but000.bu_sort1 AS searchterm1,
  but000.bu_sort2 AS searchterm2,
  but000.name_first AS firstname,
  but000.name_last AS lastname,
  but000.name_org1 AS name1,
  but000.name_org2 AS name2,
  but000.name_org3 AS name3,
  but000.name_org4 AS name4,
  but000.name_grp1 AS namegroup1,
  but000.name_grp2 AS namegroup2,
  but000.partgrptyp AS grouptype,
  but000.augrp AS augrp,
  but000.xpcpt AS IsBusinessPurposeCompleted
FROM but000
LEFT OUTER JOIN /BOFU/CV_BPCurrentDefaultAddr AS _BPCurrentDefaultAddress ON partner = _BPCurrentDefaultAddress.BusinessPartner  -- association [0..1]
;