I_AccessControlRestrictionText
Access Control Restriction - Text
I_AccessControlRestrictionText is a Basic CDS View that provides data about "Access Control Restriction - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, AccessControlRestrictionCode. It has 1 association to related views. Part of development package VDM_PPM_OBJECTS_AUTHORIZATION.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | AccessControlRestrictionCode | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | Access Control Restriction - Text | view | |
| Search.searchable | true | view | |
| Analytics.technicalName | IACRstrText | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | AccessControlRestrictionCode | |||
| AccessControlRestrictionText | dd07t | ddtext | ||
| _Language | _Language | |||
| _AccessControlRestriction | _AccessControlRestriction |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{ representativeKey: 'AccessControlRestrictionCode',
dataCategory: #TEXT,
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING},
supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]}
// sapObjectNodeType.name: 'AccessControlRestrictionText'
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'Access Control Restriction - Text'
@Search.searchable: true
@Analytics.technicalName:'IACRstrText'
define view entity I_AccessControlRestrictionText
as select from dd07t
association to parent I_AccessControlRestriction as _AccessControlRestriction on $projection.AccessControlRestrictionCode = _AccessControlRestriction.AccessControlRestrictionCode
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_AccessControlRestriction'
key cast( substring(domvalue_l, 1, 8 ) as /s4ppm/tv_acf_restriction ) as AccessControlRestrictionCode,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking:#LOW
@Semantics.text: true
dd07t.ddtext as AccessControlRestrictionText,
_Language,
_AccessControlRestriction
}
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