I_EntProjACLByUserRoleRead
Permitted Access by UserRole-ACL with read
I_EntProjACLByUserRoleRead is a Basic CDS View that provides data about "Permitted Access by UserRole-ACL with read" in SAP S/4HANA. It reads from 2 data sources (I_PPM_AuthznByUserRoleH, I_PPM_Task) and exposes 4 fields with key fields ProjectUUID, UserID, AuthorizationRoleID, ACLActivity.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_PPM_AuthznByUserRoleH | ACL | inner |
| I_PPM_Task | Proj | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Permitted Access by UserRole-ACL with read | view | |
| AbapCatalog.sqlViewName | IEPJACLUSRRLREAD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| AccessControl.auditing.type | #CUSTOM | view | |
| AccessControl.auditing.specification | change documents on Enterprise Projects | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectUUID | ProjectUUID | ||
| KEY | UserID | UserID | ||
| KEY | AuthorizationRoleID | AuthorizationRoleID | ||
| KEY | ACLActivity | Activity |
@EndUserText.label: 'Permitted Access by UserRole-ACL with read'
@AbapCatalog.sqlViewName: 'IEPJACLUSRRLREAD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl: {
authorizationCheck: #NOT_ALLOWED,
auditing: {
type: #CUSTOM,
specification: 'change documents on Enterprise Projects'
},
personalData.blocking: #BLOCKED_DATA_EXCLUDED
}
@ClientHandling.algorithm:#SESSION_VARIABLE
@ObjectModel: {
usageType: {
serviceQuality: #B,
dataClass: #MIXED,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_EntProjACLByUserRoleRead as select from I_PPM_Task as Proj
inner join I_PPM_AuthznByUserRoleH as ACL
on Proj.TaskUUID = ACL.ReferencedObjectUUID
and ( ACL.Activity = 'Read' or ACL.Activity = 'Write' or ACL.Activity = 'Admin' )
{
key ProjectUUID,
key UserID,
key AuthorizationRoleID, // just to avoid warnings/errors
key Activity as ACLActivity
} where Proj.ObjectType = 'DPO'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PPM_AUTHZNBYUSERROLEH",
"I_PPM_TASK"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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