I_ACMObjectStatus

DDL: I_ACMOBJECTSTATUS SQL: IACMOBJSTAT Type: view BASIC

System status from JEST

I_ACMObjectStatus is a Basic CDS View that provides data about "System status from JEST" in SAP S/4HANA. It reads from 1 data source (jest) and exposes 4 fields with key fields StatusObject, StatusCode.

Data Sources (1)

SourceAliasJoin Type
jest stat from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IACMOBJSTAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey StatusCode view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label System status from JEST view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StatusObject objnr Val. Obj. No.
KEY StatusCode stat Status of Time-Dependent Document Linkage
StatusIsInactive inact TRUE
ChangeDocChangeNumber chgnr Change Number

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_ACMObjectStatus.
-- 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: IACMOBJSTAT

CREATE VIEW I_ACMObjectStatus AS
SELECT
  objnr AS StatusObject,
  stat AS StatusCode,
  inact AS StatusIsInactive,
  chgnr AS ChangeDocChangeNumber
FROM jest AS stat
;