I_ACMObjectStatusCostRevCkpt

DDL: I_ACMOBJECTSTATUSCOSTREVCKPT Type: view_entity COMPOSITE

Interface Entity for Object Status of CRC

I_ACMObjectStatusCostRevCkpt is a Composite CDS View that provides data about "Interface Entity for Object Status of CRC" in SAP S/4HANA. It reads from 2 data sources (jest, I_SystemStatusText) and exposes 5 fields with key fields ACMSettlementStatusObject, InternalOrderSystemStatus.

Data Sources (2)

SourceAliasJoin Type
jest _Status from
I_SystemStatusText _StatusText inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Interface Entity for Object Status of CRC view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ACMSettlementStatusObject jest objnr Val. Obj. No.
KEY InternalOrderSystemStatus jest stat Status of Time-Dependent Document Linkage
ChangeDocumentStatusIsInactive jest inact TRUE
StatusObjectStatusChangeNumber jest chgnr Change Number
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_ACMObjectStatusCostRevCkpt.
-- 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.

CREATE VIEW I_ACMObjectStatusCostRevCkpt AS
SELECT
  _Status.objnr AS ACMSettlementStatusObject,
  _Status.stat AS InternalOrderSystemStatus,
  _Status.inact AS ChangeDocumentStatusIsInactive,
  _Status.chgnr AS StatusObjectStatusChangeNumber,
  _StatusText.SystemStatusName AS SystemStatusName
FROM jest AS _Status
INNER JOIN I_SystemStatusText AS _StatusText ON /* join condition not captured in parsed metadata */
;