I_SCBO2_LastChangedByUser

DDL: I_SCBO2_LASTCHANGEDBYUSER Type: view_entity

Last Changed By User

I_SCBO2_LastChangedByUser is a CDS View that provides data about "Last Changed By User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 2 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Last Changed By User view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
UserDescription UserDescription 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_SCBO2_LastChangedByUser.
-- 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 I_SCBO2_LastChangedByUser AS
SELECT
  UserID,
  UserDescription
FROM I_User
;