C_BusinessUserEvent
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. Part of development package S_BUPA_BPU.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessUserBasic | _businessuser | from |
| P_USR_TO_GLOBALUID | _sapuseruuid | left_outer |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartnerUUID | |||
| UserID | I_BusinessUserBasic | UserID | ||
| SAPUserUUID | P_USR_TO_GLOBALUID | sap_uid |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@ObjectModel.sapObjectNodeType.name: 'BusinessUser'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@EndUserText.label: 'Business User Event Root View'
define root view entity C_BusinessUserEvent as select from I_BusinessUserBasic as _businessuser
left outer join P_USR_TO_GLOBALUID as _sapuseruuid on _sapuseruuid.bname = _businessuser.UserID
{
key bintohex(_businessuser.BusinessPartnerUUID) as BusinessPartnerUUID,
_businessuser.UserID as UserID,
_sapuseruuid.sap_uid as SAPUserUUID
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA