P_ACMApplStlActvStatusCode

DDL: P_ACMAPPLSTLACTVSTATUSCODE SQL: PSTATUSCODEAPPL Type: view BASIC

P_ACMApplStlActvStatusCode is a Basic CDS View 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 (11)

NameValueLevelField
AbapCatalog.sqlViewName PSTATUSCODEAPPL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL 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 P_ACMApplStlActvStatusCode.
-- 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.
-- SQL view name: PSTATUSCODEAPPL

CREATE VIEW P_ACMApplStlActvStatusCode AS
SELECT
  jest.objnr AS StatusObject,
  jest.stat AS StatusCode,
  jest.inact AS StatusIsInactive
FROM jest
;