I_ACMUserName

DDL: I_ACMUSERNAME SQL: IUSERNAME Type: view BASIC

Name of the user along with the user id

I_ACMUserName is a Basic CDS View that provides data about "Name of the user along with the user id" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 2 fields with key field UserName.

Data Sources (1)

SourceAliasJoin Type
I_User User from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IUSERNAME view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view
EndUserText.label Name of the user along with the user id view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserName I_User UserID User Name
UserDescription adrp name_text Full Name

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 I_ACMUserName.
-- 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: IUSERNAME

CREATE VIEW I_ACMUserName AS
SELECT
  User.UserID AS UserName,
  adrp.name_text AS UserDescription
FROM I_User AS User
;