P_USR_EXTUID

DDL: P_USR_EXTUID SQL: PUSREXTUID Type: view BASIC

Externe UID

P_USR_EXTUID is a Basic CDS View that provides data about "Externe UID" in SAP S/4HANA. It reads from 2 data sources (usr_extuid, usr02) and exposes 4 fields with key field bname.

Data Sources (2)

SourceAliasJoin Type
usr_extuid _usr_extuid from
usr02 _usr02 inner

Annotations (7)

NameValueLevelField
VDM.private true view
AbapCatalog.sqlViewName PUSREXTUID view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Externe UID view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY bname usr02 bname User name
class usr02 class User Group
extuid_type usr_extuid extuid_type Type of External UID
extuid usr_extuid extuid External UID

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_EXTUID.
-- 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: PUSREXTUID

CREATE VIEW P_USR_EXTUID AS
SELECT
  _usr02.bname AS bname,
  _usr02.class AS class,
  _usr_extuid.extuid_type AS extuid_type,
  _usr_extuid.extuid AS extuid
FROM usr_extuid AS _usr_extuid
INNER JOIN usr02 AS _usr02 ON /* join condition not captured in parsed metadata */
;