S_RPLPRAUTHUSER

DDL: S_RPLPRAUTHUSER SQL: SRPLPRAUTHUSER Type: view

User with Centrally Mngd PR Apprvl Auth

S_RPLPRAUTHUSER is a CDS View that provides data about "User with Centrally Mngd PR Apprvl Auth" in SAP S/4HANA. It reads from 3 data sources (S_RPLPRAUTHPROFILESTOUSERS, S_RPLPRAUTHPROFILESTOUSERS, usrefus) and exposes 1 field.

Data Sources (3)

SourceAliasJoin Type
S_RPLPRAUTHPROFILESTOUSERS S_RPLPRAUTHPROFILESTOUSERS inner
S_RPLPRAUTHPROFILESTOUSERS S_RPLPRAUTHPROFILESTOUSERS inner
usrefus usrefus inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SRPLPRAUTHUSER view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label User with Centrally Mngd PR Apprvl Auth view

Fields (1)

KeyFieldSource TableSource FieldDescription
bnameasUserID

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 S_RPLPRAUTHUSER.
-- 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: SRPLPRAUTHUSER

CREATE VIEW S_RPLPRAUTHUSER AS
SELECT
  _User.bname as UserID AS bnameasUserID
INNER JOIN S_RPLPRAUTHPROFILESTOUSERS ON /* join condition not captured in parsed metadata */
INNER JOIN usrefus ON /* join condition not captured in parsed metadata */
;