I_LogAccMSecureIDRepository
Secure ID Repository
I_LogAccMSecureIDRepository is a Basic CDS View that provides data about "Secure ID Repository" in SAP S/4HANA. It reads from 1 data source (/plmb/auth_sidrp) and exposes 13 fields with key field LogAccMSecureID. It has 4 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /plmb/auth_sidrp | /plmb/auth_sidrp | from |
Associations (4)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_LogAccMObjSecureIDAssgmt | _LogAccMUsrSecureIDAssgmt | $projection.LogAccMSecureID = _LogAccMUsrSecureIDAssgmt.LogAccMSecureID |
| [0..1] | I_LogAccMContext | _LogAccMContext | $projection.LogAccMSecureIDOwnerID = _LogAccMContext.LogAccMContextInternalId and $projection.LogAccMSecureIDOwnerType = 'ACC' |
| [0..1] | I_User | _CreatedByUser | $projection.CreatedByUser = _CreatedByUser.UserID |
| [0..1] | I_User | _LastChangedByUser | $projection.LastChangedByUser = _LastChangedByUser.UserID |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACMSECIDRPTY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #L | 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 | Secure ID Repository | view |
Fields (13)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LogAccMSecureID | sid | ||
| LogAccMObjectType | obj_type | |||
| LogAccMSecureIDOwnerType | owner_type | |||
| LogAccMSecureIDOwnerID | owner_id | |||
| CreatedByUser | creaby | |||
| CreationDateTime | create_tstmp | |||
| LastChangedByUser | chngby | |||
| LastChangeDateTime | chng_tstmp | |||
| LogAccMSecureIDIsDeleted | delflg | |||
| _LogAccMUsrSecureIDAssgmt | _LogAccMUsrSecureIDAssgmt | |||
| _CreatedByUser | _CreatedByUser | |||
| _LastChangedByUser | _LastChangedByUser | |||
| _LogAccMContext | _LogAccMContext |
@AbapCatalog.sqlViewName: 'IACMSECIDRPTY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Secure ID Repository'
define view I_LogAccMSecureIDRepository
as select from /plmb/auth_sidrp
association [0..*] to I_LogAccMObjSecureIDAssgmt as _LogAccMUsrSecureIDAssgmt on $projection.LogAccMSecureID = _LogAccMUsrSecureIDAssgmt.LogAccMSecureID
association [0..1] to I_LogAccMContext as _LogAccMContext on $projection.LogAccMSecureIDOwnerID = _LogAccMContext.LogAccMContextInternalId
and $projection.LogAccMSecureIDOwnerType = 'ACC'
association [0..1] to I_User as _CreatedByUser on $projection.CreatedByUser = _CreatedByUser.UserID
association [0..1] to I_User as _LastChangedByUser on $projection.LastChangedByUser = _LastChangedByUser.UserID
{
key sid as LogAccMSecureID,
obj_type as LogAccMObjectType,
owner_type as LogAccMSecureIDOwnerType,
owner_id as LogAccMSecureIDOwnerID,
@Semantics.user.createdBy: true
creaby as CreatedByUser,
@Semantics.systemDateTime.createdAt: true
create_tstmp as CreationDateTime,
@Semantics.user.lastChangedBy: true
chngby as LastChangedByUser,
@Semantics.systemDateTime.lastChangedAt: true
chng_tstmp as LastChangeDateTime,
delflg as LogAccMSecureIDIsDeleted,
_LogAccMUsrSecureIDAssgmt,
_CreatedByUser,
_LastChangedByUser,
_LogAccMContext
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMB/AUTH_SIDRP"
],
"ASSOCIATED":
[
"I_LOGACCMCONTEXT",
"I_LOGACCMOBJSECUREIDASSGMT",
"I_USER"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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