I_LogAccMObjSecureIDAssgmt

DDL: I_LOGACCMOBJSECUREIDASSGMT SQL: IACMOBJSIDASGMNT Type: view BASIC Package: VDM_PLMB_ACM

Object Secure ID Assignment

I_LogAccMObjSecureIDAssgmt is a Basic CDS View that provides data about "Object Secure ID Assignment" in SAP S/4HANA. It reads from 1 data source (/plmb/auth_obsid) and exposes 12 fields with key fields LogAccMSecureID, LogAccMObjectType, LogAccMObjectID. It has 4 associations to related views. Part of development package VDM_PLMB_ACM.

Data Sources (1)

SourceAliasJoin Type
/plmb/auth_obsid /plmb/auth_obsid from

Associations (4)

CardinalityTargetAliasCondition
[0..*] I_LogAccMUsrSecureIDAssgmt _LogAccMUsrSecureIDAssgmt $projection.LogAccMSecureID = _LogAccMUsrSecureIDAssgmt.LogAccMActivitySecureID
[0..1] I_LogAccMSecureIDRepository _LogAccMSecureIDRepository $projection.LogAccMSecureID = _LogAccMSecureIDRepository.LogAccMSecureID
[0..1] I_User _CreatedByUser $projection.CreatedByUser = _CreatedByUser.UserID
[0..1] I_User _LastChangedByUser $projection.LastChangedByUser = _LastChangedByUser.UserID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMOBJSIDASGMNT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #XL 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 Object Secure ID Assignment view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY LogAccMSecureID sid SID
KEY LogAccMObjectType obj_type Type
KEY LogAccMObjectID object_id Transaction ID
LogAccMObjectAssignmentType assgnmt_type Assgmt Type
CreatedByUser creaby User ID
CreationDateTime create_tstmp Time Stamp
LastChangedByUser chngby User ID
LastChangeDateTime chng_tstmp Time Stamp
_LogAccMUsrSecureIDAssgmt _LogAccMUsrSecureIDAssgmt
_LogAccMSecureIDRepository _LogAccMSecureIDRepository
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser

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 I_LogAccMObjSecureIDAssgmt.
-- 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.
-- SQL view name: IACMOBJSIDASGMNT

CREATE VIEW I_LogAccMObjSecureIDAssgmt AS
SELECT
  sid AS LogAccMSecureID,
  obj_type AS LogAccMObjectType,
  object_id AS LogAccMObjectID,
  assgnmt_type AS LogAccMObjectAssignmentType,
  creaby AS CreatedByUser,
  create_tstmp AS CreationDateTime,
  chngby AS LastChangedByUser,
  chng_tstmp AS LastChangeDateTime
FROM /plmb/auth_obsid
LEFT OUTER JOIN I_LogAccMUsrSecureIDAssgmt AS _LogAccMUsrSecureIDAssgmt ON LogAccMSecureID = _LogAccMUsrSecureIDAssgmt.LogAccMActivitySecureID  -- association [0..*]
LEFT OUTER JOIN I_LogAccMSecureIDRepository AS _LogAccMSecureIDRepository ON LogAccMSecureID = _LogAccMSecureIDRepository.LogAccMSecureID  -- association [0..1]
LEFT OUTER JOIN I_User AS _CreatedByUser ON CreatedByUser = _CreatedByUser.UserID  -- association [0..1]
LEFT OUTER JOIN I_User AS _LastChangedByUser ON LastChangedByUser = _LastChangedByUser.UserID  -- association [0..1]
;