SUSR_USER_AUTH_OBJECT

DDL: SUSR_USER_AUTH_OBJECT SQL: SUSRUSERAUTHOBJ Type: view

Selects user, authorization and authorization object

SUSR_USER_AUTH_OBJECT is a CDS View that provides data about "Selects user, authorization and authorization object" in SAP S/4HANA. It reads from 1 data source (usrefus) and exposes 5 fields.

Data Sources (1)

SourceAliasJoin Type
usrefus usrefus inner

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName SUSRUSERAUTHOBJ view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Selects user, authorization and authorization object view

Fields (5)

KeyFieldSource TableSource FieldDescription
bname usrbf2 bname User name
auth usrbf2 auth Authorization
bnameasbname
auth usrbf2 auth Authorization
object usrbf2 objct Object

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 SUSR_USER_AUTH_OBJECT.
-- 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: SUSRUSERAUTHOBJ

CREATE VIEW SUSR_USER_AUTH_OBJECT AS
SELECT
  usrbf2.bname AS bname,
  usrbf2.auth AS auth,
  usrbf2.objct as object AS bnameasbname,
  usrbf2.objct AS object
INNER JOIN usrefus ON /* join condition not captured in parsed metadata */
;