I_LogAccMObjectTypeActive

DDL: I_LOGACCMOBJECTTYPEACTIVE SQL: IACMOBJTYPEACT Type: view BASIC

Check is active for Object Type

I_LogAccMObjectTypeActive is a Basic CDS View that provides data about "Check is active for Object Type" in SAP S/4HANA. It reads from 1 data source (/plmb/auth_ot_ac) and exposes 2 fields with key field LogAccMObjectType.

Data Sources (1)

SourceAliasJoin Type
/plmb/auth_ot_ac /plmb/auth_ot_ac from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMOBJTYPEACT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Check is active for Object Type view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LogAccMObjectType obj_type Type
LogAccMObjectTypeIsActive active Usage Active

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_LogAccMObjectTypeActive.
-- 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: IACMOBJTYPEACT

CREATE VIEW I_LogAccMObjectTypeActive AS
SELECT
  obj_type AS LogAccMObjectType,
  active AS LogAccMObjectTypeIsActive
FROM /plmb/auth_ot_ac
;