I_AccessControlRestriction
Access Control Restriction
I_AccessControlRestriction is a Basic CDS View that provides data about "Access Control Restriction" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field AccessControlRestrictionCode. It has 1 association to related views. Part of development package VDM_PPM_OBJECTS_AUTHORIZATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_AccessControlRestrictionText | _RestrictionText | |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | AccessControlRestrictionCode | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Access Control Restriction | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AccessControlRestrictionCode | |||
| DomainValue | dd07l | domvalue_l | ||
| _RestrictionText | _RestrictionText |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{ representativeKey: 'AccessControlRestrictionCode',
usageType.dataClass: #CUSTOMIZING,
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
// sapObjectNodeType.name: 'AccessControlRestriction',
supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET] }
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@EndUserText.label: 'Access Control Restriction'
@Search.searchable: true
define root view entity I_AccessControlRestriction
as select from dd07l
composition [0..*] of I_AccessControlRestrictionText as _RestrictionText
{
@ObjectModel.text.association: '_AssignmentStatusText'
key cast( substring(domvalue_l, 1, 8 ) as /s4ppm/tv_acf_restriction ) as AccessControlRestrictionCode,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
dd07l.domvalue_l as DomainValue,
_RestrictionText
}
where
domname = '/S4PPM/TV_ACF_RESTRICTION'
and as4local = 'A';
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