C_BPUsrChangeDocument

DDL: C_BPUSRCHANGEDOCUMENT SQL: CBPUSRCHGDOC Type: view CONSUMPTION

Business User Change Document

C_BPUsrChangeDocument is a Consumption CDS View that provides data about "Business User Change Document" in SAP S/4HANA. It reads from 1 data source (R_BPUsrChangeDocument) and exposes 8 fields with key field BusinessPartnerUUID.

Data Sources (1)

SourceAliasJoin Type
R_BPUsrChangeDocument R_BPUsrChangeDocument from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName CBPUSRCHGDOC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Business User Change Document view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID BusinessPartnerUUID UUID
BusinessPartner BusinessPartner Issuing Authority
PersonNumber PersonNumber Person Number
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
DataControllerSet DataControllerSet Data Ctrlr. Set
AddressID AddressID Ship-to address
BPAddressChangeDocObject BPAddressChangeDocObject

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 C_BPUsrChangeDocument.
-- 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: CBPUSRCHGDOC

CREATE VIEW C_BPUsrChangeDocument AS
SELECT
  BusinessPartnerUUID,
  BusinessPartner,
  PersonNumber,
  AuthorizationGroup,
  IsBusinessPurposeCompleted,
  DataControllerSet,
  AddressID,
  BPAddressChangeDocObject
FROM R_BPUsrChangeDocument
;