C_RtlPromnSiteObjPgPurOrd

DDL: C_RTLPROMNSITEOBJPGPURORD SQL: CRTLPROMSTBOPGPO Type: view CONSUMPTION Package: RFM_PROMOTION_OP

Retail Promotion Site Object Page - Purchase Order

C_RtlPromnSiteObjPgPurOrd is a Consumption CDS View that provides data about "Retail Promotion Site Object Page - Purchase Order" in SAP S/4HANA. It reads from 1 data source (I_RtlPromnSitePurchaseOrder) and exposes 18 fields with key fields RetailPromotion, Site, PurchaseOrder. Part of development package RFM_PROMOTION_OP.

Data Sources (1)

SourceAliasJoin Type
I_RtlPromnSitePurchaseOrder I_RtlPromnSitePurchaseOrder from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CRTLPROMSTBOPGPO view
EndUserText.label Retail Promotion Site Object Page - Purchase Order 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 (18)

KeyFieldSource TableSource FieldDescription
KEY RetailPromotion RetailPromotion Promotion
_RetailPromotion _RetailPromotion
KEY Site Site Plant
_Site _Site
KEY PurchaseOrder PurchaseOrder Purchase Order
_PurchaseOrder _PurchaseOrder
Supplier _PurchaseOrder Supplier Supplier
_Supplier _PurchaseOrder _Supplier
SupplierName
PurchasingOrganization _PurchaseOrder PurchasingOrganization Purchasing Organization
_PurchasingOrganization _PurchaseOrder _PurchasingOrganization
PurchasingGroup _PurchaseOrder PurchasingGroup Purchasing Group
_PurchasingGroup _PurchaseOrder _PurchasingGroup
PurchaseOrderDate _PurchaseOrder PurchaseOrderDate Order Date
PurchaseOrderType _PurchaseOrder PurchaseOrderType PO Type
_PurchaseOrderType _PurchaseOrder _PurchaseOrderType
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_RtlPromnSiteObjPgPurOrd.
-- 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: CRTLPROMSTBOPGPO

CREATE VIEW C_RtlPromnSiteObjPgPurOrd AS
SELECT
  RetailPromotion,
  Site,
  PurchaseOrder,
  _PurchaseOrder.Supplier AS Supplier,
  _PurchaseOrder._Supplier AS _Supplier,
  _PurchaseOrder._Supplier.SupplierName AS SupplierName,
  _PurchaseOrder.PurchasingOrganization AS PurchasingOrganization,
  _PurchaseOrder._PurchasingOrganization AS _PurchasingOrganization,
  _PurchaseOrder.PurchasingGroup AS PurchasingGroup,
  _PurchaseOrder._PurchasingGroup AS _PurchasingGroup,
  _PurchaseOrder.PurchaseOrderDate AS PurchaseOrderDate,
  _PurchaseOrder.PurchaseOrderType AS PurchaseOrderType,
  _PurchaseOrder._PurchaseOrderType AS _PurchaseOrderType,
  _PurchaseOrder.SupplyingPlant AS SupplyingPlant,
  _PurchaseOrder._SupplyingPlant AS _SupplyingPlant
FROM I_RtlPromnSitePurchaseOrder
;