S_SESAuthUser
User with SES Approval Authorization
S_SESAuthUser is a CDS View that provides data about "User with SES Approval Authorization" in SAP S/4HANA. It reads from 3 data sources (S_SESAuthProfilesToUsers, S_SESAuthProfilesToUsers, usrefus) and exposes 1 field.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| S_SESAuthProfilesToUsers | S_SESAuthProfilesToUsers | inner |
| S_SESAuthProfilesToUsers | S_SESAuthProfilesToUsers | inner |
| usrefus | usrefus | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | SSESAUTHUSER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | User with SES Approval Authorization | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| bnameasUserID |
@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
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA