SEPM_I_CustInvcPaymentStatusT

DDL: SEPM_I_CUSTINVCPAYMENTSTATUST SQL: SEPM_ICIPYSTTST Type: view

EPM: CustomerInvoice Payment Status Text

SEPM_I_CustInvcPaymentStatusT is a CDS View that provides data about "EPM: CustomerInvoice Payment Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields CustomerInvoicePaymentStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] SEPM_I_CustInvcPaymentStatus _CustomerInvoicePaymentStatus $projection.CustomerInvoicePaymentStatus = _CustomerInvoicePaymentStatus.CustomerInvoicePaymentStatus
[0..1] SEPM_I_Language _Language $projection.Language = _Language.Language

Annotations (9)

NameValueLevelField
EndUserText.label EPM: CustomerInvoice Payment Status Text view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
AbapCatalog.sqlViewName SEPM_ICIPYSTTST view
ObjectModel.representativeKey CustomerInvoicePaymentStatus view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CustomerInvoicePaymentStatus
KEY Language ddlanguage Lang.
CustInvcPaymentStatusName ddtext Short text
_CustomerInvoicePaymentStatus _CustomerInvoicePaymentStatus
_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_CustInvcPaymentStatusT.
-- 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_ICIPYSTTST

CREATE VIEW SEPM_I_CustInvcPaymentStatusT AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as snwd_soi_payment_status_code preserving type ) AS CustomerInvoicePaymentStatus,
  ddlanguage AS Language,
  ddtext AS CustInvcPaymentStatusName
FROM dd07t
LEFT OUTER JOIN SEPM_I_CustInvcPaymentStatus AS _CustomerInvoicePaymentStatus ON CustomerInvoicePaymentStatus = _CustomerInvoicePaymentStatus.CustomerInvoicePaymentStatus  -- association [1..1]
LEFT OUTER JOIN SEPM_I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;