S_RPLPRAUTHUSER

CDS View

User with Centrally Mngd PR Apprvl Auth

S_RPLPRAUTHUSER is a CDS View in S/4HANA. User with Centrally Mngd PR Apprvl Auth. It contains 1 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
S_RPLPRUSERSTOAUTHPROFILE view from Centrally Mngd PR User to Auth Profile

Fields (1)

KeyField CDS FieldsUsed in Views
UserID UserID 1
@AbapCatalog.sqlViewName: 'SRPLPRAUTHUSER'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'User with Centrally Mngd PR Apprvl Auth'
define view S_RPLPRAUTHUSER as select distinct from usrbf2 as _User
 inner join  S_RPLPRAUTHPROFILESTOUSERS on S_RPLPRAUTHPROFILESTOUSERS.Profile = _User.auth

{
  _User.bname as UserID
}
where
  _User.objct like 'M_CPR%'

union select distinct from usrbf2
  inner join               S_RPLPRAUTHPROFILESTOUSERS on S_RPLPRAUTHPROFILESTOUSERS.Profile = usrbf2.auth
  inner join               usrefus                     on usrbf2.bname = usrefus.refuser
{
  usrefus.bname as UserID
}
where
  usrbf2.objct like 'M_CPR%'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"S_RPLPRAUTHPROFILESTOUSERS",
"USRBF2",
"USREFUS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/