SEPM_I_PurOrdConfStatusT

DDL: SEPM_I_PURORDCONFSTATUST SQL: SEPM_IPOCFSTTST Type: view Package: S_EPM_CDS_REF

EPM Demo: Purchase Order Confirmation Status Text

SEPM_I_PurOrdConfStatusT is a CDS View that provides data about "EPM Demo: Purchase Order Confirmation Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields PurchaseOrderConfStatus, Language. It has 2 associations to related views. Part of development package S_EPM_CDS_REF.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] SEPM_I_PurOrdConfStatus _PurchaseOrderConfStatus $projection.PurchaseOrderConfStatus = _PurchaseOrderConfStatus.PurchaseOrderConfStatus
[0..1] SEPM_I_Language _Language $projection.Language = _Language.Language

Annotations (9)

NameValueLevelField
EndUserText.label EPM Demo: Purchase Order Confirmation Status Text view
Analytics.dataExtraction.enabled true view
AbapCatalog.sqlViewName SEPM_IPOCFSTTST view
ObjectModel.dataCategory #TEXT 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 (5)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrderConfStatus
KEY Language ddlanguage Lang.
PurOrdConfStatusName ddtext Short text
_PurchaseOrderConfStatus _PurchaseOrderConfStatus
_Language _Language

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_PurOrdConfStatusT.
-- 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_IPOCFSTTST

CREATE VIEW SEPM_I_PurOrdConfStatusT AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as snwd_po_cf_status_code preserving type ) AS PurchaseOrderConfStatus,
  ddlanguage AS Language,
  ddtext AS PurOrdConfStatusName
FROM dd07t
LEFT OUTER JOIN SEPM_I_PurOrdConfStatus AS _PurchaseOrderConfStatus ON PurchaseOrderConfStatus = _PurchaseOrderConfStatus.PurchaseOrderConfStatus  -- association [1..1]
LEFT OUTER JOIN SEPM_I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;