I_PrepaymentAgrmtStatus

DDL: I_PREPAYMENTAGRMTSTATUS SQL: IPPMGAGRMSTS Type: view COMPOSITE

Prepayment Aggrement Status

I_PrepaymentAgrmtStatus is a Composite CDS View that provides data about "Prepayment Aggrement 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 (13)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGAGRMSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Prepayment Aggrement Status view
VDM.viewType #COMPOSITE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP 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_PrepaymentAgrmtStatus.
-- 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: IPPMGAGRMSTS

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