I_ProcOrdMgmtAsyncJobInfo

DDL: I_PROCORDMGMTASYNCJOBINFO Type: view_entity BASIC Package: VDM_PP_PROC_ORD_MNG

Process Order Job Information

I_ProcOrdMgmtAsyncJobInfo is a Basic CDS View that provides data about "Process Order Job Information" in SAP S/4HANA. It reads from 1 data source (ppmng_prcord_sts) and exposes 5 fields with key field ProcessOrder. Part of development package VDM_PP_PROC_ORD_MNG.

Data Sources (1)

SourceAliasJoin Type
ppmng_prcord_sts ppmng_prcord_sts from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
EndUserText.label Process Order Job Information view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProcessOrder processorder Order
AsyncApplicationJobStatus action User action
ApplicationJobName jobname Name of Send Process
ApplicationJobDescription jobcount Job number
ApplicationJobStartDateTime creationts CreationTS

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_ProcOrdMgmtAsyncJobInfo.
-- 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_ProcOrdMgmtAsyncJobInfo AS
SELECT
  ProcessOrder,
  action AS AsyncApplicationJobStatus,
  jobname AS ApplicationJobName,
  jobcount AS ApplicationJobDescription,
  creationts AS ApplicationJobStartDateTime
FROM ppmng_prcord_sts
;