I_LogAccMContextText
Access Control Context Text
I_LogAccMContextText is a Basic CDS View that provides data about "Access Control Context Text" in SAP S/4HANA. It reads from 1 data source (hrp1000) and exposes 5 fields with key fields LogAccMContextInternalId, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| hrp1000 | hrp1000 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_LogAccMContext | _Context | $projection.LogAccMContextInternalId = _Context.LogAccMContextInternalId |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ILOGACCMTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | LogAccMContextInternalId | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Access Control Context Text | view |
@AbapCatalog.sqlViewName: 'ILOGACCMTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'LogAccMContextInternalId'
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Access Control Context Text'
define view I_LogAccMContextText
as select from hrp1000
association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_LogAccMContext as _Context on $projection.LogAccMContextInternalId = _Context.LogAccMContextInternalId
{
@ObjectModel.foreignKey.association: '_Context'
key hrp1000.objid as LogAccMContextInternalId,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language
key hrp1000.langu as Language,
@Semantics.text: true
hrp1000.stext as LogAccMContextDescription,
/* Associations */
_Language,
_Context
}
where
plvar = '01'
and otype = 'CC'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"HRP1000"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_LOGACCMCONTEXT"
],
"BASE":
[],
"VERSION":0
}
}*/
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