SEPM_I_PurOrdConfStatus

DDL: SEPM_I_PURORDCONFSTATUS SQL: SEPM_IPOCFSTTS Type: view

EPM Demo: Purchase Order Confirmation Status

SEPM_I_PurOrdConfStatus is a CDS View of category Dimension that provides data about "EPM Demo: Purchase Order Confirmation Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PurchaseOrderConfStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] SEPM_I_PurOrdConfStatusT _Text $projection.PurchaseOrderConfStatus = _Text.PurchaseOrderConfStatus

Annotations (9)

NameValueLevelField
EndUserText.label EPM Demo: Purchase Order Confirmation Status view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AbapCatalog.sqlViewName SEPM_IPOCFSTTS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PurchaseOrderConfStatus view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrderConfStatus
_Text _Text

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 SEPM_I_PurOrdConfStatus.
-- 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: SEPM_IPOCFSTTS

CREATE VIEW SEPM_I_PurOrdConfStatus AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as snwd_po_cf_status_code preserving type ) AS PurchaseOrderConfStatus
FROM dd07l
LEFT OUTER JOIN SEPM_I_PurOrdConfStatusT AS _Text ON PurchaseOrderConfStatus = _Text.PurchaseOrderConfStatus  -- association [0..*]
;