C_RtlPromnItmObjPgPurchaseOrd

DDL: C_RTLPROMNITMOBJPGPURCHASEORD SQL: CRPROMIOBJPGPO Type: view CONSUMPTION Package: RFM_PROMOTION_OP

Retail Promotion Item Object Page - Purchase Orders

C_RtlPromnItmObjPgPurchaseOrd is a Consumption CDS View that provides data about "Retail Promotion Item Object Page - Purchase Orders" in SAP S/4HANA. It reads from 1 data source (I_RetailPromnItemPurchaseOrder) and exposes 17 fields with key fields RetailPromotion, PurchaseOrder, Material. Part of development package RFM_PROMOTION_OP.

Data Sources (1)

SourceAliasJoin Type
I_RetailPromnItemPurchaseOrder I_RetailPromnItemPurchaseOrder from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CRPROMIOBJPGPO view
EndUserText.label Retail Promotion Item Object Page - Purchase Orders view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey PurchaseOrder view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
UI.presentationVariant.sortOrder.by PurchaseOrderDate view
UI.presentationVariant.sortOrder.direction #DESC view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY RetailPromotion RetailPromotion Promotion
_RetailPromotion _RetailPromotion
KEY PurchaseOrder PurchaseOrder Purchase Order
_PurchaseOrder _PurchaseOrder
KEY Material Material Vehicle Model
Supplier _PurchaseOrder Supplier Supplier
_Supplier _PurchaseOrder _Supplier
SupplierName
PurchasingOrganization _PurchaseOrder PurchasingOrganization Purchasing Organization
_PurchasingOrganization _PurchaseOrder _PurchasingOrganization
PurchaseOrderDate _PurchaseOrder PurchaseOrderDate PO Date
PurchaseOrderType _PurchaseOrder PurchaseOrderType PO Type
_PurchaseOrderType _PurchaseOrder _PurchaseOrderType
PurchasingGroup _PurchaseOrder PurchasingGroup Purchasing Group
_PurchasingGroup _PurchaseOrder _PurchasingGroup
SupplyingPlant _PurchaseOrder SupplyingPlant Supplying Plant
_SupplyingPlant _PurchaseOrder _SupplyingPlant

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 C_RtlPromnItmObjPgPurchaseOrd.
-- 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: CRPROMIOBJPGPO

CREATE VIEW C_RtlPromnItmObjPgPurchaseOrd AS
SELECT
  RetailPromotion,
  PurchaseOrder,
  Material,
  _PurchaseOrder.Supplier AS Supplier,
  _PurchaseOrder._Supplier AS _Supplier,
  _PurchaseOrder._Supplier.SupplierName AS SupplierName,
  _PurchaseOrder.PurchasingOrganization AS PurchasingOrganization,
  _PurchaseOrder._PurchasingOrganization AS _PurchasingOrganization,
  _PurchaseOrder.PurchaseOrderDate AS PurchaseOrderDate,
  _PurchaseOrder.PurchaseOrderType AS PurchaseOrderType,
  _PurchaseOrder._PurchaseOrderType AS _PurchaseOrderType,
  _PurchaseOrder.PurchasingGroup AS PurchasingGroup,
  _PurchaseOrder._PurchasingGroup AS _PurchasingGroup,
  _PurchaseOrder.SupplyingPlant AS SupplyingPlant,
  _PurchaseOrder._SupplyingPlant AS _SupplyingPlant
FROM I_RetailPromnItemPurchaseOrder
;