I_RespyMgmtUsrToGlobUsrID

DDL: I_RESPYMGMTUSRTOGLOBUSRID SQL: IRSMUSTGLUSID Type: view BASIC

User to Global User ID

I_RespyMgmtUsrToGlobUsrID is a Basic CDS View that provides data about "User to Global User ID" in SAP S/4HANA. It reads from 1 data source (P_USR_TO_GLOBALUID) and exposes 2 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
P_USR_TO_GLOBALUID P_USR_TO_GLOBALUID from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IRSMUSTGLUSID view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label User to Global User ID view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID bname User name
GlobalUserID sap_uid Global User ID

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_RespyMgmtUsrToGlobUsrID.
-- 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: IRSMUSTGLUSID

CREATE VIEW I_RespyMgmtUsrToGlobUsrID AS
SELECT
  bname AS UserID,
  sap_uid AS GlobalUserID
FROM P_USR_TO_GLOBALUID
;