S_SRCGPROJAUTHZNUSER
User with Sourcing Project Auth
S_SRCGPROJAUTHZNUSER is a CDS View in S/4HANA. User with Sourcing Project Auth. It contains 1 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| S_SrcgProjUserToAuthPrfl | view | from | Sourcing Project Usr Auth Profile |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| UserID | UserID | 1 |
@AbapCatalog.sqlViewName: 'SPAUTHUSER'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'User with Sourcing Project Auth'
define view S_SrcgProjAuthznUser
as select distinct from usrbf2 as _User
inner join S_SrcgProjAuthPrflToUsers on S_SrcgProjAuthPrflToUsers.Profile = _User.auth
{
_User.bname as UserID
}
where
_User.objct like 'M_SP%'
union select distinct from usrbf2
inner join S_SrcgProjAuthPrflToUsers on S_SrcgProjAuthPrflToUsers.Profile = usrbf2.auth
inner join usrefus on usrbf2.bname = usrefus.refuser
{
usrefus.bname as UserID
}
where
usrbf2.objct like 'M_SP%'