S_SuplrConfUsersToAuthProfile

DDL: S_SUPLRCONFUSERSTOAUTHPROFILE SQL: SSCUSERAUTH Type: view

Supplier Confirmation user to authorization profile

S_SuplrConfUsersToAuthProfile is a CDS View that provides data about "Supplier Confirmation user to authorization profile" in SAP S/4HANA. It reads from 2 data sources (S_MyInboxProfile, usrbf2) and exposes 1 field.

Data Sources (2)

SourceAliasJoin Type
S_MyInboxProfile S_MyInboxProfile inner
usrbf2 usrbf2 inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SSCUSERAUTH view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Supplier Confirmation user to authorization profile view

Fields (1)

KeyFieldSource TableSource FieldDescription
UserID _SCAuth UserID
@AbapCatalog.sqlViewName: 'SSCUSERAUTH'
@AbapCatalog.compiler.compareFilter:true 
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Supplier Confirmation user to authorization profile'
define view S_SuplrConfUsersToAuthProfile
  as select distinct from S_SuplrConfAuthUser as _SCAuth
    //inner join   S_MyInboxUser       as _MyInboxAuth on _SCAuth.UserID = _MyInboxAuth.UserID

    inner join usrbf2 on  usrbf2.bname = _SCAuth.UserID
                      and usrbf2.objct = 'S_SERVICE'
    inner join            S_MyInboxProfile on S_MyInboxProfile.Profile = usrbf2.auth                      
{
  _SCAuth.UserID
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"S_MYINBOXPROFILE",
"S_SUPLRCONFAUTHUSER",
"USRBF2"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/