I_PrepaymentAgrmtPostingStatus

DDL: I_PREPAYMENTAGRMTPOSTINGSTATUS SQL: IPPMGAGRMPSSTS Type: view BASIC

Prepayment Aggrement Posting Status

I_PrepaymentAgrmtPostingStatus is a Basic CDS View that provides data about "Prepayment Aggrement Posting Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 6 fields with key fields SystemStatus, Language.

Data Sources (1)

SourceAliasJoin Type
I_SystemStatusText I_SystemStatusText from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGAGRMPSSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Prepayment Aggrement Posting Status view
VDM.viewType #BASIC view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus SystemStatus Status
KEY Language Language Report Text Language
SystemStatusName SystemStatusName Status Description
SystemStatusShortName SystemStatusShortName Status
_Language _Language
_SystemStatus _SystemStatus

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_PrepaymentAgrmtPostingStatus.
-- 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: IPPMGAGRMPSSTS

CREATE VIEW I_PrepaymentAgrmtPostingStatus AS
SELECT
  SystemStatus,
  Language,
  SystemStatusName,
  SystemStatusShortName
FROM I_SystemStatusText
;