I_PaymentProcessingStatus

DDL: I_PAYMENTPROCESSINGSTATUS SQL: IPAYMENTSTATUS Type: view BASIC

Payment Processing Status

I_PaymentProcessingStatus is a Basic CDS View that provides data about "Payment Processing Status" in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07l) and exposes 4 fields with key fields Language, DomainValueLow.

Data Sources (2)

SourceAliasJoin Type
dd07t _dd07t left_outer
dd07l dd07l from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPAYMENTSTATUS view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Payment Processing Status view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropogatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage Lang.
KEY DomainValueLow dd07l domvalue_l Lower Value
PaymentProcessingStatus dd07t ddtext Short text
_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 I_PaymentProcessingStatus.
-- 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: IPAYMENTSTATUS

CREATE VIEW I_PaymentProcessingStatus AS
SELECT
  _dd07t.ddlanguage AS Language,
  dd07l.domvalue_l AS DomainValueLow,
  _dd07t.ddtext AS PaymentProcessingStatus
FROM dd07l
LEFT OUTER JOIN dd07t AS _dd07t ON /* join condition not captured in parsed metadata */
;