S_POAUTHUSER
User with PO Approval Authorization
S_POAUTHUSER is a CDS View in S/4HANA. User with PO Approval Authorization. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| S_POUsersToAuthProfile | view | from | Purchase Order user to authorization profile |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| UserID | UserID | 1 |
@AbapCatalog.sqlViewName: 'SPOAUTHUSER'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'User with PO Approval Authorization'
define view S_POAuthUser
as select distinct from usrbf2 as _User
inner join S_POAuthProfile on S_POAuthProfile.Profile = _User.auth
{
_User.bname as UserID
}
where
_User.objct like 'M_BEST%'
union select distinct from usrbf2
inner join S_POAuthProfile on S_POAuthProfile.Profile = usrbf2.auth
inner join usrefus on usrbf2.bname = usrefus.refuser
{
usrefus.bname as UserID
}
where
usrbf2.objct like 'M_BEST%'