P_ACMStorageStatus

DDL: P_ACMSTORAGESTATUS Type: view_entity BASIC

Storage statuses for ACM

P_ACMStorageStatus is a Basic CDS View that provides data about "Storage statuses for ACM" in SAP S/4HANA. It reads from 2 data sources (I_SystemStatusText, jest) and exposes 4 fields with key fields StorageStatusObject, StatusProfileName.

Data Sources (2)

SourceAliasJoin Type
I_SystemStatusText _StatusText inner
jest jest from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Storage statuses for ACM view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StorageStatusObject 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 P_ACMStorageStatus.
-- 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 P_ACMStorageStatus AS
SELECT
  jest.objnr AS StorageStatusObject,
  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 */
;