C_BusinessUserEvent

DDL: C_BUSINESSUSEREVENT Type: view_entity

Business User Event Root View

C_BusinessUserEvent is a CDS View that provides data about "Business User Event Root View" in SAP S/4HANA. It reads from 2 data sources (I_BusinessUserBasic, P_USR_TO_GLOBALUID) and exposes 3 fields with key field BusinessPartnerUUID.

Data Sources (2)

SourceAliasJoin Type
I_BusinessUserBasic _businessuser from
P_USR_TO_GLOBALUID _sapuseruuid left_outer

Annotations (7)

NameValueLevelField
ObjectModel.sapObjectNodeType.name BusinessUser view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Business User Event Root View view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID
UserID I_BusinessUserBasic UserID User Name
SAPUserUUID P_USR_TO_GLOBALUID sap_uid Global User ID

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_BusinessUserEvent.
-- 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 C_BusinessUserEvent AS
SELECT
  bintohex(_businessuser.BusinessPartnerUUID) AS BusinessPartnerUUID,
  _businessuser.UserID AS UserID,
  _sapuseruuid.sap_uid AS SAPUserUUID
FROM I_BusinessUserBasic AS _businessuser
LEFT OUTER JOIN P_USR_TO_GLOBALUID AS _sapuseruuid ON /* join condition not captured in parsed metadata */
;