I_PrmtHbRpldPOWrkflwCard

DDL: I_PRMTHBRPLDPOWRKFLWCARD SQL: IPRCHBPOWRKFLCRD Type: view BASIC Package: VDM_MM_PUR_EXT_PO

ToDo Workflow Card info of MPOC

I_PrmtHbRpldPOWrkflwCard (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Sourcing & Procurement

I_PrmtHbRpldPOWrkflwCard is a Basic CDS View that provides data about "ToDo Workflow Card info of MPOC" in SAP S/4HANA. It reads from 1 data source (I_CentralPurchaseOrder) and exposes 10 fields with key fields PurchaseOrder, ExtSourceSystem. It has 2 associations to related views. Part of development package VDM_MM_PUR_EXT_PO.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSourcing & Procurement
Application ComponentMM-PUR-HUB-PO-2CL
CapabilitiesData Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSourcing and Procurement for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_CentralPurchaseOrder PurchaseOrder from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ProcmtHubPurgGroup _PurchasingGrp _PurchasingGrp.ProcmtHubPurchasingGroup = $projection.PurchasingGroup and _PurchasingGrp.ProcurementHubSourceSystem = $projection.ExtSourceSystem
[0..1] I_ProcmtHubSupplier _ProcmtHubSupplier _ProcmtHubSupplier.ProcmtHubFixedSupplier = $projection.Supplier and _ProcmtHubSupplier.ProcurementHubSourceSystem = $projection.ExtSourceSystem

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPRCHBPOWRKFLCRD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label ToDo Workflow Card info of MPOC view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document Number
KEY ExtSourceSystem ExtSourceSystem Connected System ID
PurchaseOrderType PurchaseOrderType Purchasing Document Type
PurchasingGroup PurchasingGroup Purchasing Group
CompanyCode CompanyCode Receiver Company Code
Supplier Supplier Supplier
DocumentCurrency DocumentCurrency Document Currency
PurchaseOrderNetAmount PurchaseOrderNetAmount Net Value in Document Currency
PurchaseOrderDate I_CentralPurchaseOrder PurchaseOrderDate Purchase Order Date
PurchasingOrganization Purchasing Organization

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_PrmtHbRpldPOWrkflwCard.
-- 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: IPRCHBPOWRKFLCRD

CREATE VIEW I_PrmtHbRpldPOWrkflwCard AS
SELECT
  PurchaseOrder,
  ExtSourceSystem,
  PurchaseOrderType,
  PurchasingGroup,
  CompanyCode,
  Supplier,
  DocumentCurrency,
  PurchaseOrderNetAmount,
  PurchaseOrder.PurchaseOrderDate AS PurchaseOrderDate,
  cast (PurchaseOrder.PurchasingOrganization as ekorg_ll preserving type ) AS PurchasingOrganization
FROM I_CentralPurchaseOrder AS PurchaseOrder
LEFT OUTER JOIN I_ProcmtHubPurgGroup AS _PurchasingGrp ON _PurchasingGrp.ProcmtHubPurchasingGroup = PurchasingGroup AND _PurchasingGrp.ProcurementHubSourceSystem = ExtSourceSystem  -- association [0..1]
LEFT OUTER JOIN I_ProcmtHubSupplier AS _ProcmtHubSupplier ON _ProcmtHubSupplier.ProcmtHubFixedSupplier = Supplier AND _ProcmtHubSupplier.ProcurementHubSourceSystem = ExtSourceSystem  -- association [0..1]
;