I_ACMApplicationDocumentStatus

DDL: I_ACMAPPLICATIONDOCUMENTSTATUS Type: view_entity BASIC

Application Document Status

I_ACMApplicationDocumentStatus is a Basic CDS View that provides data about "Application Document 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 (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Application Document Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ApplicationStatusObject jest objnr Val. Obj. No.
KEY StatusProfileName jest stat Status of Time-Dependent Document Linkage
ChangeDocumentStatusIsInactive jest 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_ACMApplicationDocumentStatus.
-- 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_ACMApplicationDocumentStatus AS
SELECT
  jest.objnr AS ApplicationStatusObject,
  jest.stat AS StatusProfileName,
  jest.inact AS ChangeDocumentStatusIsInactive,
  _StatusText.SystemStatusName AS SystemStatusName
FROM jest
INNER JOIN I_SystemStatusText AS _StatusText ON /* join condition not captured in parsed metadata */
;