I_ACMSystemStatus

DDL: I_ACMSYSTEMSTATUS SQL: IACMSYSTEMSTATUS Type: view BASIC

ACM Specific Status

I_ACMSystemStatus is a Basic CDS View that provides data about "ACM Specific Status" in SAP S/4HANA. It reads from 2 data sources (I_SystemStatusText, jest) and exposes 4 fields with key fields ApplicationStatusObject, StatusProfileName.

Data Sources (2)

SourceAliasJoin Type
I_SystemStatusText _StatusText inner
jest jest from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IACMSYSTEMSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
EndUserText.label ACM Specific Status view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ApplicationStatusObject objnr Val. Obj. No.
KEY StatusProfileName stat Status of Time-Dependent Document Linkage
ChangeDocumentStatusIsInactive inact TRUE
SystemStatusName I_SystemStatusText SystemStatusName Text

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_ACMSystemStatus.
-- 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: IACMSYSTEMSTATUS

CREATE VIEW I_ACMSystemStatus AS
SELECT
  objnr AS ApplicationStatusObject,
  stat AS StatusProfileName,
  inact AS ChangeDocumentStatusIsInactive,
  _StatusText.SystemStatusName AS SystemStatusName
FROM jest
INNER JOIN I_SystemStatusText AS _StatusText ON /* join condition not captured in parsed metadata */
;