S_SESAUTHUSER
User with SES Approval Authorization
S_SESAUTHUSER is a CDS View in S/4HANA. User with SES 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_SESUsersToAuthProfile | view | from | Service Entry Sheet User to Authorization Profile |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| UserID | UserID | 1 |
@AbapCatalog.sqlViewName: 'SSESAUTHUSER'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'User with SES Approval Authorization'
define view S_SESAuthUser
as select distinct from usrbf2
inner join S_SESAuthProfilesToUsers on S_SESAuthProfilesToUsers.Profile = usrbf2.auth
{
usrbf2.bname as UserID
}
where
usrbf2.objct like 'M_SES%'
union select distinct from usrbf2
inner join S_SESAuthProfilesToUsers on S_SESAuthProfilesToUsers.Profile = usrbf2.auth
inner join usrefus on usrbf2.bname = usrefus.refuser
{
usrefus.bname as UserID
}
where
usrbf2.objct like 'M_SES%'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"S_SESAUTHPROFILESTOUSERS",
"USRBF2",
"USREFUS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/