I_SystemUser

DDL: I_SYSTEMUSER SQL: ISYSTEMUSER Type: view BASIC

System Benutzer

System User

I_SystemUser (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_SystemUser is a Basic CDS View that provides data about "System Benutzer" in SAP S/4HANA. It reads from 2 data sources (usr02, usr21) and exposes 2 fields with key field UserID.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-SEC-USR-ADM
CapabilitiesData Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (2)

SourceAliasJoin Type
usr02 _usr02 from
usr21 _usr21 inner

Annotations (13)

NameValueLevelField
EndUserText.label System Benutzer view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ISYSTEMUSER view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID User ID
UserDescription User Description

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_SystemUser.
-- 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: ISYSTEMUSER

CREATE VIEW I_SystemUser AS
SELECT
  cast( _usr02.bname as vdm_userid preserving type ) AS UserID,
  cast( _usr21.techdesc as vdm_userdescription preserving type ) AS UserDescription
FROM usr02 AS _usr02
INNER JOIN usr21 AS _usr21 ON /* join condition not captured in parsed metadata */
;