/BOFU/CV_BPCommon

DDL: /BOFU/CV_BPCOMMON SQL: /BOFU/CV_BPCMN Type: view

Obsolete: Use CDS View /BOFU/VE_BPCMN

/BOFU/CV_BPCommon is a CDS View that provides data about "Obsolete: Use CDS View /BOFU/VE_BPCMN" 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 (10)

NameValueLevelField
AbapCatalog.sqlViewName /BOFU/CV_BPCMN view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Obsolete: Use CDS View /BOFU/VE_BPCMN 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_grp1 Name 1
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/CV_BPCommon.
-- 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: /BOFU/CV_BPCMN

CREATE VIEW /BOFU/CV_BPCommon 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_grp1 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]
;