I_ACMApplRetObjSts

DDL: I_ACMAPPLRETOBJSTS Type: view_entity BASIC

ACM Application Return Object Status

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

Data Sources (1)

SourceAliasJoin Type
jest jest from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ACM Application Return 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 StatusObject 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_ACMApplRetObjSts.
-- 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_ACMApplRetObjSts AS
SELECT
  jest.objnr AS StatusObject,
  jest.stat AS StatusCode,
  jest.inact AS StatusIsInactive
FROM jest
;