I_ACMSettlmtObjSts

DDL: I_ACMSETTLMTOBJSTS Type: view_entity BASIC

ACM Settlement Object Status

I_ACMSettlmtObjSts is a Basic CDS View that provides data about "ACM Settlement Object Status" in SAP S/4HANA. It reads from 1 data source (jest) and exposes 3 fields with key fields ACMSettlementStatusObject, StatusCode.

Data Sources (1)

SourceAliasJoin Type
jest jest from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ACM Settlement Object Status view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ACMSettlementStatusObject jest objnr Val. Obj. No.
KEY StatusCode jest stat Status of Time-Dependent Document Linkage
StatusIsInactive jest inact TRUE

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_ACMSettlmtObjSts.
-- 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_ACMSettlmtObjSts AS
SELECT
  jest.objnr AS ACMSettlementStatusObject,
  jest.stat AS StatusCode,
  jest.inact AS StatusIsInactive
FROM jest
;