S_SESAUTHPROFILESTOUSERS
Service Entry Sheet Authorization Check
S_SESAUTHPROFILESTOUSERS is a CDS View in S/4HANA. Service Entry Sheet Authorization Check. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| S_SESAuthUser | view | inner | User with SES Approval Authorization |
@AbapCatalog.sqlViewName: 'SSESAUTHSER'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Service Entry Sheet Authorization Check'
define view S_SESAuthProfilesToUsers
as select distinct from ust12 as _Profile2Activities
{
_Profile2Activities.auth as Profile //Authorization for creating or changing service entry sheet
}
where
(
_Profile2Activities.objct = 'M_SES_EKG'
or _Profile2Activities.objct = 'M_SES_EKO'
or _Profile2Activities.objct = 'M_SES_WRK'
)
and _Profile2Activities.field = 'ACTVT'
and(
_Profile2Activities.von = '37'
or _Profile2Activities.von = '*'
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UST12"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/