P_USR_BY_GLOBALUID

DDL: P_USR_BY_GLOBALUID SQL: PUSRBYGLOBALUID Type: view BASIC

User UUID

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

Data Sources (2)

SourceAliasJoin Type
usr_by_globaluid _usr_by_globaluid from
usr02 _usr02 inner

Annotations (7)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY sap_uid usr_by_globaluid sap_uid Global User ID
bname usr02 bname User name
class usr02 class User Group
active usr_by_globaluid active Usage Active

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_BY_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: PUSRBYGLOBALUID

CREATE VIEW P_USR_BY_GLOBALUID AS
SELECT
  _usr_by_globaluid.sap_uid AS sap_uid,
  _usr02.bname AS bname,
  _usr02.class AS class,
  _usr_by_globaluid.active AS active
FROM usr_by_globaluid AS _usr_by_globaluid
INNER JOIN usr02 AS _usr02 ON /* join condition not captured in parsed metadata */
;