C_DrctActivityAllocationUserVH

DDL: C_DRCTACTIVITYALLOCATIONUSERVH Type: view_entity CONSUMPTION

Created By

C_DrctActivityAllocationUserVH is a Consumption CDS View that provides data about "Created By" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 4 fields with key field UserID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_User _User from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_DirectActivityAllocation _DirectActivityAllocation _User.UserID = _DirectActivityAllocation.AccountingDocCreatedByUser

Annotations (11)

NameValueLevelField
EndUserText.label Created By view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UserID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UserID I_User UserID User Name
UserDescription I_User UserDescription Full Name
IsTechnicalUser
_DirectActivityAllocation _DirectActivityAllocation

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_DrctActivityAllocationUserVH.
-- 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_DrctActivityAllocationUserVH AS
SELECT
  _User.UserID AS UserID,
  _User.UserDescription AS UserDescription,
  cast (IsTechnicalUser as fco_io_is_technical_user preserving type ) AS IsTechnicalUser
FROM I_User AS _User
LEFT OUTER JOIN R_DirectActivityAllocation AS _DirectActivityAllocation ON _User.UserID = _DirectActivityAllocation.AccountingDocCreatedByUser  -- association [0..*]
;