R_AccessControlReasonTP

DDL: R_ACCESSCONTROLREASONTP Type: view_entity TRANSACTIONAL

Reason Entries

R_AccessControlReasonTP is a Transactional CDS View that provides data about "Reason Entries" in SAP S/4HANA. It reads from 1 data source (R_AccessControlReason) and exposes 10 fields with key field AccessControlReasonUUID.

Data Sources (1)

SourceAliasJoin Type
R_AccessControlReason ART from

Annotations (8)

NameValueLevelField
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_ALLOWED view
ObjectModel.representativeKey AccessControlReasonUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Reason Entries view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY AccessControlReasonUUID AccessControlReasonUUID Reason Reference
AccessControlHeaderUUID AccessControlHeaderUUID Root Key UUID
AccessControlFrameworkCode AccessControlFrameworkCode Framework Code
AccessControlFrameworkUUID AccessControlFrameworkUUID Framework UUID
AccessControlFrameworkID AccessControlFrameworkID Framework ID
CreationDateTime CreationDateTime Timestamp
CreatedByUser CreatedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
LastChangedByUser LastChangedByUser User Name
_Root _Root

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 R_AccessControlReasonTP.
-- 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.

CREATE VIEW R_AccessControlReasonTP AS
SELECT
  AccessControlReasonUUID,
  AccessControlHeaderUUID,
  AccessControlFrameworkCode,
  AccessControlFrameworkUUID,
  AccessControlFrameworkID,
  CreationDateTime,
  CreatedByUser,
  LastChangeDateTime,
  LastChangedByUser
FROM R_AccessControlReason AS ART
;