I_ProcOrdMgmtAsyncJobInfo

DDL: I_PROCORDMGMTASYNCJOBINFO SQL: IPRCORDJBINF Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
ppmng_prcord_sts ppmng_prcord_sts from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPRCORDJBINF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE 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.
-- SQL view name: IPRCORDJBINF

CREATE VIEW I_ProcOrdMgmtAsyncJobInfo AS
SELECT
  ProcessOrder,
  action AS AsyncApplicationJobStatus,
  jobname AS ApplicationJobName,
  jobcount AS ApplicationJobDescription,
  creationts AS ApplicationJobStartDateTime
FROM ppmng_prcord_sts
;