A_ABOPRun

DDL: A_ABOPRUN Type: view_entity CONSUMPTION

Backorder Processing Run

A_ABOPRun is a Consumption CDS View that provides data about "Backorder Processing Run" in SAP S/4HANA. It reads from 1 data source (R_ABOPRunTP) and exposes 2 fields with key field ABOPRunUUID.

Data Sources (1)

SourceAliasJoin Type
R_ABOPRunTP R_ABOPRunTP projection

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Backorder Processing Run view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ABOPRunUUID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
OData.entityType.name AdvancedBackorderProcessingRun_Type view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ABOPRunUUID ABOPRunUUID Check ID
ABOPRunCustomExecutionName ABOPRunCustomExecutionName API Exec. Name

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 A_ABOPRun.
-- 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 A_ABOPRun AS
SELECT
  ABOPRunUUID,
  ABOPRunCustomExecutionName
FROM R_ABOPRunTP
;