S_SrcgProjUserToAuthPrfl

DDL: S_SRCGPROJUSERTOAUTHPRFL SQL: SPUSERAUTH Type: view Package: ODATA_MM_COMMONS_VH_WFL

Sourcing Project Usr Auth Profile

S_SrcgProjUserToAuthPrfl is a CDS View that provides data about "Sourcing Project Usr Auth Profile" in SAP S/4HANA. It reads from 2 data sources (S_MyInboxUser, S_SrcgProjAuthznUser) and exposes 1 field. Part of development package ODATA_MM_COMMONS_VH_WFL.

Data Sources (2)

SourceAliasJoin Type
S_MyInboxUser _MyInboxAuth inner
S_SrcgProjAuthznUser _SrcgProjAuthznUser from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName SPUSERAUTH 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 Sourcing Project Usr Auth Profile view

Fields (1)

KeyFieldSource TableSource FieldDescription
UserID S_SrcgProjAuthznUser UserID
@AbapCatalog.sqlViewName: 'SPUSERAUTH'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Sourcing Project Usr Auth Profile'
define view S_SrcgProjUserToAuthPrfl
  as select from S_SrcgProjAuthznUser as _SrcgProjAuthznUser
    inner join   S_MyInboxUser        as _MyInboxAuth on _SrcgProjAuthznUser.UserID = _MyInboxAuth.UserID
{
  _SrcgProjAuthznUser.UserID
}