P_OBJECT_AUTH

DDL: P_OBJECT_AUTH SQL: POBJECTAUTH Type: view

Users with Object and Authorization

P_OBJECT_AUTH is a CDS View that provides data about "Users with Object and Authorization" in SAP S/4HANA. It reads from 2 data sources (usrbf2, usrefus) and exposes 5 fields.

Data Sources (2)

SourceAliasJoin Type
usrbf2 usrbf2 left_outer
usrefus usrefus left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName POBJECTAUTH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Users with Object and Authorization view

Fields (5)

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

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_OBJECT_AUTH.
-- 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: POBJECTAUTH

CREATE VIEW P_OBJECT_AUTH AS
SELECT
  usrbf2.bname AS bname,
  usrbf2.objct AS objct,
  usrbf2.auth AS auth
LEFT OUTER JOIN usrefus ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN usrbf2 ON /* join condition not captured in parsed metadata */
;