P_USR_TO_GLOBALUID

DDL: P_USR_TO_GLOBALUID SQL: PUSRTOGLOBALUID Type: view BASIC

User UUID

P_USR_TO_GLOBALUID is a Basic CDS View that provides data about "User UUID" in SAP S/4HANA. It reads from 2 data sources (usr_to_globaluid, usr02) and exposes 3 fields with key field bname.

Data Sources (2)

SourceAliasJoin Type
usr_to_globaluid _usr_to_globaluid from
usr02 _usr02 inner

Annotations (7)

NameValueLevelField
VDM.private true view
AbapCatalog.sqlViewName PUSRTOGLOBALUID view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label User UUID view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY bname usr02 bname User name
class usr02 class User Group
sap_uid usr_to_globaluid 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 P_USR_TO_GLOBALUID.
-- 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: PUSRTOGLOBALUID

CREATE VIEW P_USR_TO_GLOBALUID AS
SELECT
  _usr02.bname AS bname,
  _usr02.class AS class,
  _usr_to_globaluid.sap_uid AS sap_uid
FROM usr_to_globaluid AS _usr_to_globaluid
INNER JOIN usr02 AS _usr02 ON /* join condition not captured in parsed metadata */
;