C_BusEvtLogUserCntctCardVH

DDL: C_BUSEVTLOGUSERCNTCTCARDVH Type: view CONSUMPTION

Business Event Log User

C_BusEvtLogUserCntctCardVH is a Consumption CDS View that provides data about "Business Event Log User" in SAP S/4HANA. It reads from 2 data sources (I_AddressPersonName, I_User) and exposes 5 fields with key field ContactCardID. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_AddressPersonName _AddressPersonName inner
I_User I_User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusinessEventLogEvent _BusinessEvent I_User.UserID = _BusinessEvent.CreatedByUser

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CBELUSERCVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.representativeKey ContactCardID view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Business Event Log User view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ContactCardID I_User UserID User Name
FirstName I_AddressPersonName GivenName First Name
LastName I_AddressPersonName FamilyName Last Name
FullName
_BusinessEvent _BusinessEvent

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_BusEvtLogUserCntctCardVH.
-- 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_BusEvtLogUserCntctCardVH AS
SELECT
  I_User.UserID AS ContactCardID,
  _AddressPersonName.GivenName AS FirstName,
  _AddressPersonName.FamilyName AS LastName,
  cast(I_User.UserDescription as ad_namtext preserving type) AS FullName
FROM I_User
INNER JOIN I_AddressPersonName AS _AddressPersonName ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_BusinessEventLogEvent AS _BusinessEvent ON I_User.UserID = _BusinessEvent.CreatedByUser  -- association [0..*]
;