I_EntProjACLByUserSubstitRead

DDL: I_ENTPROJACLBYUSERSUBSTITREAD SQL: IEPRJACLUSRSREAD Type: view BASIC

Permitted Access by Subsitution-ACL with read

I_EntProjACLByUserSubstitRead is a Basic CDS View that provides data about "Permitted Access by Subsitution-ACL with read" in SAP S/4HANA. It reads from 2 data sources (I_PPM_AuthznBySubstitH, I_PPM_Task) and exposes 4 fields with key fields ProjectUUID, UserID, SubstitutedUser, ACLActivity.

Data Sources (2)

SourceAliasJoin Type
I_PPM_AuthznBySubstitH ACL inner
I_PPM_Task Proj from

Annotations (15)

NameValueLevelField
EndUserText.label Permitted Access by Subsitution-ACL with read view
AbapCatalog.sqlViewName IEPRJACLUSRSREAD 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)

KeyFieldSource TableSource FieldDescription
KEY ProjectUUID ProjectUUID Project UUID
KEY UserID UserID User Name
KEY SubstitutedUser SubstitutedUser User Scope
KEY ACLActivity Activity VAT Activity

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_EntProjACLByUserSubstitRead.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IEPRJACLUSRSREAD

CREATE VIEW I_EntProjACLByUserSubstitRead AS
SELECT
  ProjectUUID,
  UserID,
  SubstitutedUser,
  Activity AS ACLActivity
FROM I_PPM_Task AS Proj
INNER JOIN I_PPM_AuthznBySubstitH AS ACL ON /* join condition not captured in parsed metadata */
;