I_ACMRoleAssignmentForUser

DDL: I_ACMROLEASSIGNMENTFORUSER SQL: IACMUSRROLASGNT Type: view BASIC

Interface layer for role assigned to the user

I_ACMRoleAssignmentForUser is a Basic CDS View that provides data about "Interface layer for role assigned to the user" in SAP S/4HANA. It reads from 1 data source (agr_users) and exposes 4 fields with key fields LogAccMActyGrpProfileRoleName, SessionUser.

Data Sources (1)

SourceAliasJoin Type
agr_users agr_users from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IACMUSRROLASGNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Interface layer for role assigned to the user view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY LogAccMActyGrpProfileRoleName agr_name
KEY SessionUser uname
CharcFromDate from_dat
CharcToDate to_dat
@AbapCatalog.sqlViewName: 'IACMUSRROLASGNT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Interface layer for role assigned to the user'
define view I_ACMRoleAssignmentForUser as select from agr_users
 {
   //agr_users

   key agr_name as LogAccMActyGrpProfileRoleName,
   key uname    as SessionUser,
       from_dat as CharcFromDate,
       to_dat   as CharcToDate
    
}